blob: 42cd0945e842766740bceac1f6969673703622a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# $Id: PKGBUILD 149220 2012-02-06 13:45:35Z ibiru $
# Maintainer: Jan de Groot <jgc@archlinux.org>
pkgname=libsexy
pkgver=0.1.11
pkgrel=4
pkgdesc="Doing naughty things to good widgets."
arch=('i686' 'x86_64')
license=('GPL')
url="http://chipx86.com/wiki/Libsexy"
depends=('gtk2' 'libxml2')
makedepends=('iso-codes' 'pkgconfig')
options=('!libtool')
source=("http://releases.chipx86.com/libsexy/libsexy/${pkgname}-${pkgver}.tar.gz")
md5sums=('33c079a253270ec8bfb9508e4bb30754')
build() {
cd ${srcdir}/${pkgname}-${pkgver}
./configure --prefix=/usr --disable-static
make
}
package() {
cd ${srcdir}/${pkgname}-${pkgver}
make DESTDIR=${pkgdir} install
rm -f ${pkgdir}/usr/lib/libsexy.a
}
|