2013-02-28 00:59:51 +08:00
|
|
|
#
|
|
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
|
|
#
|
|
|
|
# maintainer abveritas@chakra-project.org
|
2010-05-31 05:18:13 +08:00
|
|
|
|
|
|
|
pkgname=liblqr
|
|
|
|
pkgver=0.4.1
|
2013-02-28 00:59:51 +08:00
|
|
|
pkgrel=2
|
2010-05-31 05:18:13 +08:00
|
|
|
pkgdesc="A seam-carving C/C++ library called Liquid Rescale"
|
2013-02-28 00:59:51 +08:00
|
|
|
arch=('x86_64')
|
2010-05-31 05:18:13 +08:00
|
|
|
url="http://liblqr.wikidot.com/"
|
|
|
|
license=('GPL')
|
|
|
|
depends=('glibc' 'glib2')
|
|
|
|
makedepends=('pkgconfig')
|
|
|
|
options=('!libtool')
|
2013-02-28 00:59:51 +08:00
|
|
|
source=("http://liblqr.wikidot.com/local--files/en:download-page/$pkgname-1-$pkgver.tar.bz2")
|
|
|
|
md5sums=('0e24ed3c9fcdcb111062640764d7b87a')
|
2010-05-31 05:18:13 +08:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd "$srcdir/$pkgname-1-$pkgver"
|
2013-02-28 00:59:51 +08:00
|
|
|
|
2010-05-31 05:18:13 +08:00
|
|
|
./configure --prefix=/usr
|
2013-02-28 00:59:51 +08:00
|
|
|
make
|
2010-05-31 05:18:13 +08:00
|
|
|
}
|
2013-02-28 00:59:51 +08:00
|
|
|
|
|
|
|
package() {
|
|
|
|
cd "$srcdir/$pkgname-1-$pkgver"
|
|
|
|
|
|
|
|
make DESTDIR="$pkgdir/" install
|
|
|
|
}
|
|
|
|
|