libunique: initial import

This commit is contained in:
Jose V Beneyto 2010-12-17 11:31:06 +01:00
parent 4063df570e
commit ac5628a250
3 changed files with 41 additions and 0 deletions

18
libunique/.footprint Normal file
View File

@ -0,0 +1,18 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/include/
drwxr-xr-x root/root usr/include/unique-1.0/
drwxr-xr-x root/root usr/include/unique-1.0/unique/
-rw-r--r-- root/root usr/include/unique-1.0/unique/unique.h
-rw-r--r-- root/root usr/include/unique-1.0/unique/uniqueapp.h
-rw-r--r-- root/root usr/include/unique-1.0/unique/uniquebackend.h
-rw-r--r-- root/root usr/include/unique-1.0/unique/uniqueenumtypes.h
-rw-r--r-- root/root usr/include/unique-1.0/unique/uniquemessage.h
-rw-r--r-- root/root usr/include/unique-1.0/unique/uniqueversion.h
drwxr-xr-x root/root usr/lib/
-rwxr-xr-x root/root usr/lib/libunique-1.0.la
lrwxrwxrwx root/root usr/lib/libunique-1.0.so -> libunique-1.0.so.0.100.6
lrwxrwxrwx root/root usr/lib/libunique-1.0.so.0 -> libunique-1.0.so.0.100.6
-rwxr-xr-x root/root usr/lib/libunique-1.0.so.0.100.6
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/unique-1.0.pc
drwxr-xr-x root/root usr/share/

1
libunique/.md5sum Normal file
View File

@ -0,0 +1 @@
7955769ef31f1bc4f83446dbb3625e6d libunique-1.1.6.tar.bz2

22
libunique/Pkgfile Normal file
View File

@ -0,0 +1,22 @@
# Description: Unique is a library for writing single instance application
# URL: http://live.gnome.org/LibUnique
# Maintainer: Jose V Beneyto, sepen at crux dot nu
# Packager: Jose V Beneyto, sepen at crux dot nu
# Depends on: gtk dbus-glib
name=libunique
version=1.1.6
release=1
source=(http://download.gnome.org/sources/$name/${version%.*}/$name-$version.tar.bz2)
build() {
cd $name-$version
./configure --prefix=/usr \
--enable-dbus=yes \
--disable-static \
--disable-gtkdoc \
--with-x
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/gtk-doc
}