mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 18:07:14 +08:00
31 lines
633 B
Bash
31 lines
633 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer abveritas@chakra-project.org
|
|
|
|
pkgname=liblqr
|
|
pkgver=0.4.2
|
|
pkgrel=2
|
|
pkgdesc="A seam-carving C/C++ library called Liquid Rescale"
|
|
arch=('x86_64')
|
|
url="http://liblqr.wikidot.com/"
|
|
license=('GPL')
|
|
depends=('glibc' 'glib2')
|
|
makedepends=('pkgconfig')
|
|
source=("http://liblqr.wikidot.com/local--files/en:download-page/$pkgname-1-$pkgver.tar.bz2")
|
|
md5sums=('915643d993da97e10665d48c0bf8f3d0')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-1-$pkgver"
|
|
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-1-$pkgver"
|
|
|
|
make DESTDIR="$pkgdir/" install
|
|
}
|
|
|