29 lines
693 B
Plaintext
29 lines
693 B
Plaintext
# Description: Unique is a library for writing single instance application
|
|
# URL: https://wiki.gnome.org/Attic/LibUnique
|
|
# Maintainer: Juergen Daubert, jue at crux dot nu
|
|
# Depends on: gtk xorg-libxdamage
|
|
|
|
name=libunique
|
|
version=1.1.6
|
|
release=5
|
|
source=(http://download.gnome.org/sources/$name/${version%.*}/$name-$version.tar.bz2 \
|
|
http://www.linuxfromscratch.org/patches/blfs/svn/$name-$version-upstream_fixes-1.patch)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
patch -p1 -i $SRC/$name-$version-upstream_fixes-1.patch
|
|
|
|
autoreconf -fi
|
|
./configure \
|
|
--prefix=/usr \
|
|
--disable-dbus \
|
|
--disable-debug \
|
|
--with-x
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/share/gtk-doc
|
|
}
|