blob: e2eced53d7ce2684a94b126be35d46170d800755 (
plain)
1 # Description: A collection of GTK+ widgets that extend the standard widgets.
2 # URL: http://www.chipx86.com/wiki/Libsexy
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Packager: Antonio SJ Musumeci, bile at landofbile dot com
5 # Depends on: gtk
6
7 name=libsexy
8 version=0.1.11
9 release=2
10 source=(http://releases.chipx86.com/libsexy/libsexy/libsexy-$version.tar.gz
11 libsexy-0.1.11-fix-null-list.patch
12 libsexy-0.1.11-pkgconfig-pollution.patch)
13
14 build() {
15 cd $name-$version
16
17 patch -p1 -i $SRC/libsexy-0.1.11-fix-null-list.patch
18 patch -p0 -i $SRC/libsexy-0.1.11-pkgconfig-pollution.patch
19
20 sed -i -e "/^SUBDIRS = /s/docs //" Makefile.in
21
22 ./configure --prefix=/usr
23 make
24 make DESTDIR=$PKG install
25 }
|