mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
27 lines
494 B
Bash
27 lines
494 B
Bash
pkgname=qrencode
|
|
pkgver=4.0.0
|
|
pkgrel=1
|
|
pkgdesc="C library for encoding data in a QR Code symbol."
|
|
arch=('x86_64')
|
|
depends=('libpng')
|
|
makedepends=('sdl2')
|
|
url="https://fukuchi.org/works/qrencode/"
|
|
license=('GPL')
|
|
options=(!libtool)
|
|
source=("https://fukuchi.org/works/$pkgname/$pkgname-$pkgver.tar.gz")
|
|
md5sums=('582f29d5008e37f10bf08d31ebd3b4df')
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
|
|
./configure --prefix=/usr
|
|
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
|
|
make prefix=$pkgdir/usr install
|
|
}
|