mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
23 lines
687 B
Bash
23 lines
687 B
Bash
# $Id: PKGBUILD 20833 2008-12-07 03:59:20Z eric $
|
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
|
pkgname=libsexy
|
|
pkgver=0.1.11
|
|
pkgrel=1
|
|
pkgdesc="Doing naughty things to good widgets."
|
|
arch=(i686 x86_64)
|
|
license=('GPL')
|
|
url="http://chipx86.com/wiki/Libsexy"
|
|
depends=('gtk2>=2.10.11' 'libxml2>=2.6.27')
|
|
makedepends=('iso-codes' 'pkgconfig')
|
|
options=('!libtool')
|
|
source=(http://releases.chipx86.com/libsexy/libsexy/${pkgname}-${pkgver}.tar.gz)
|
|
md5sums=('33c079a253270ec8bfb9508e4bb30754')
|
|
|
|
build() {
|
|
cd ${startdir}/src/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr --disable-static
|
|
make || return 1
|
|
make DESTDIR=${startdir}/pkg install
|
|
|
|
rm -f ${startdir}/pkg/usr/lib/libsexy.a
|
|
}
|