blob: 42d4961a6077cccaddd788e36a982400fafb3fa4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Description: Librairie permettant une seule instance d'une application
# URL: http://live.gnome.org/LibUnique
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on: gtk, xorg-libxcursor, xorg-libxdamage, xorg-libxrandr, xorg-libxinerama
# Run on: gtk
name=libunique
version=1.1.6
release=2
source=(http://ftp.gnome.org/pub/gnome/sources/$name/${version%.*}/$name-$version.tar.bz2)
build() {
cd $name-$version
./configure --prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
--disable-static --disable-dbus
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share/gtk-doc
}
|