2017-04-03 14:58:21 +02:00
|
|
|
|
# Description: Libunique paketi, tekli örnek uygulamaları yazmak için bir kütüphane içerir.
|
2016-02-24 01:27:23 +01:00
|
|
|
|
# URL: http://live.gnome.org/LibUnique
|
2017-04-03 14:58:21 +02:00
|
|
|
|
# Packager: milisarge
|
2016-02-24 01:27:23 +01:00
|
|
|
|
# Depends on: gtk2
|
|
|
|
|
|
|
|
|
|
_name=libunique
|
|
|
|
|
|
|
|
|
|
name=libunique1
|
|
|
|
|
version=1.1.6
|
|
|
|
|
release=2
|
|
|
|
|
|
|
|
|
|
source=(http://ftp.gnome.org/pub/gnome/sources/${_name}/${version%.*}/${_name}-$version.tar.bz2
|
|
|
|
|
http://www.linuxfromscratch.org/patches/blfs/svn/libunique-$version-upstream_fixes-1.patch)
|
|
|
|
|
|
|
|
|
|
build() {
|
|
|
|
|
cd ${_name}-$version
|
|
|
|
|
patch -Np1 -i ../libunique-$version-upstream_fixes-1.patch
|
|
|
|
|
autoreconf -fi
|
|
|
|
|
./configure --prefix=/usr --disable-static \
|
|
|
|
|
--disable-dbus
|
|
|
|
|
make
|
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
|
rm -r $PKG/usr/share/gtk-doc
|
|
|
|
|
}
|
|
|
|
|
|