1
0
forked from ports/contrib

qrencode: initial commit

This commit is contained in:
Tim Biermann 2019-06-11 23:45:48 +02:00
parent 5f46eac5b0
commit da22073e2a
Signed by: tb
GPG Key ID: 42F8B4E30B673606
4 changed files with 41 additions and 0 deletions

16
qrencode/.footprint Normal file
View File

@ -0,0 +1,16 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/qrencode
drwxr-xr-x root/root usr/include/
-rw-r--r-- root/root usr/include/qrencode.h
drwxr-xr-x root/root usr/lib/
-rwxr-xr-x root/root usr/lib/libqrencode.la
lrwxrwxrwx root/root usr/lib/libqrencode.so -> libqrencode.so.4.0.2
lrwxrwxrwx root/root usr/lib/libqrencode.so.4 -> libqrencode.so.4.0.2
-rwxr-xr-x root/root usr/lib/libqrencode.so.4.0.2
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/libqrencode.pc
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man1/
-rw-r--r-- root/root usr/share/man/man1/qrencode.1.gz

1
qrencode/.md5sum Normal file
View File

@ -0,0 +1 @@
3eb64357f6fbdb68c27cb2e44e97280a qrencode-4.0.2.tar.bz2

5
qrencode/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF30xUdN6Xg2fv3jg8/TEbodQ/7EAwogtjirpSX5y0gt5aeYwHDChq7Huuo74/WJBroOftb0f0r83TMd1wuFquKAQ=
SHA256 (Pkgfile) = 0553a6bbefaf131402fba3cfc349fa7280b1e8b8790d418a7b0b41ce33e8e748
SHA256 (.footprint) = b79791d932326869ed1d3d481f3f30123cde64873df0a761165b17536e4f5502
SHA256 (qrencode-4.0.2.tar.bz2) = c9cb278d3b28dcc36b8d09e8cad51c0eca754eb004cb0247d4703cb4472b58b4

19
qrencode/Pkgfile Normal file
View File

@ -0,0 +1,19 @@
# Description: C library for encoding data in a QR Code symbol.
# URL: https://fukuchi.org/works/qrencode/
# Maintainer: Tim Biermann, tbier at posteo dot de
# Packager: Torsten Henschel, thenschel at henschelsoft dot de
# Depends: libpng
name=qrencode
version=4.0.2
release=1
source=(https://fukuchi.org/works/$name/$name-$version.tar.bz2)
build() {
cd $name-$version
./configure \
--prefix=/usr
make
make DESTDIR=$PKG install
}