2010-12-17 11:31:06 +01:00
|
|
|
# Description: Unique is a library for writing single instance application
|
2020-06-21 20:21:42 +10:00
|
|
|
# URL: https://wiki.gnome.org/Attic/LibUnique
|
2019-08-19 15:40:17 +02:00
|
|
|
# Maintainer: Juergen Daubert, jue at crux dot nu
|
2019-12-08 10:43:36 +01:00
|
|
|
# Depends on: gtk xorg-libxdamage
|
2010-12-17 11:31:06 +01:00
|
|
|
|
|
|
|
name=libunique
|
2015-01-07 00:19:05 +01:00
|
|
|
version=1.1.6
|
2019-08-19 15:40:17 +02:00
|
|
|
release=5
|
2015-01-07 00:19:05 +01:00
|
|
|
source=(http://download.gnome.org/sources/$name/${version%.*}/$name-$version.tar.bz2 \
|
2019-08-19 15:40:17 +02:00
|
|
|
http://www.linuxfromscratch.org/patches/blfs/svn/$name-$version-upstream_fixes-1.patch)
|
2010-12-17 11:31:06 +01:00
|
|
|
|
|
|
|
build() {
|
2019-08-19 15:40:17 +02:00
|
|
|
cd $name-$version
|
2012-06-19 15:53:24 +02:00
|
|
|
|
2019-08-19 15:40:17 +02:00
|
|
|
patch -p1 -i $SRC/$name-$version-upstream_fixes-1.patch
|
2015-01-07 00:19:05 +01:00
|
|
|
|
2019-08-19 15:40:17 +02:00
|
|
|
autoreconf -fi
|
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--disable-dbus \
|
|
|
|
--disable-debug \
|
|
|
|
--with-x
|
2013-07-02 19:11:16 +02:00
|
|
|
|
2019-08-19 15:40:17 +02:00
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
2015-01-07 00:19:05 +01:00
|
|
|
|
2019-08-19 15:40:17 +02:00
|
|
|
rm -r $PKG/usr/share/gtk-doc
|
2010-12-17 11:31:06 +01:00
|
|
|
}
|