mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
27 lines
551 B
Bash
27 lines
551 B
Bash
pkgname=qrencode
|
|
pkgver=3.4.4
|
|
pkgrel=1
|
|
pkgdesc="C library for encoding data in a QR Code symbol."
|
|
arch=('x86_64')
|
|
depends=('libpng')
|
|
makedepends=('sdl')
|
|
url="http://megaui.net/fukuchi/works/qrencode/index.en.html"
|
|
license=('GPL')
|
|
options=(!libtool)
|
|
source=("http://megaui.net/fukuchi/works/${pkgname}/${pkgname}-${pkgver}.tar.bz2")
|
|
md5sums=('62ba472bede0ad393cc63e0012b5f007')
|
|
|
|
build() {
|
|
cd "${srcdir}/$pkgname-$pkgver"
|
|
|
|
./configure --prefix=/usr
|
|
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/$pkgname-$pkgver"
|
|
|
|
make prefix="$pkgdir/usr" install
|
|
}
|