blob: 78042e0fa76e402670d5ce99ac2c325bd9216928 (
plain)
1 # Description: Unique is a library for writing single instance application
2 # URL: http://live.gnome.org/LibUnique
3 # Maintainer: Juergen Daubert, jue at crux dot nu
4 # Depends on: gtk3 xorg-libxdamage
5
6 name=libunique
7 version=1.1.6
8 release=5
9 source=(http://download.gnome.org/sources/$name/${version%.*}/$name-$version.tar.bz2 \
10 http://www.linuxfromscratch.org/patches/blfs/svn/$name-$version-upstream_fixes-1.patch)
11
12 build() {
13 cd $name-$version
14
15 patch -p1 -i $SRC/$name-$version-upstream_fixes-1.patch
16
17 autoreconf -fi
18 ./configure \
19 --prefix=/usr \
20 --disable-dbus \
21 --disable-debug \
22 --with-x
23
24 make
25 make DESTDIR=$PKG install
26
27 rm -r $PKG/usr/share/gtk-doc
28 }
|