d0b1fcdcd1
Fix PIE. Adopted.
22 lines
604 B
Bash
22 lines
604 B
Bash
# template for 'zpaq'
|
|
pkgname=zpaq
|
|
version=7.13
|
|
revision=1
|
|
license="GPL-3"
|
|
short_desc="Incremental Journaling Backup Utility and Archiver"
|
|
build_style=gnu-makefile
|
|
hostmakedepends="unzip perl"
|
|
maintainer="Christian Neukirchen <chneukirchen@gmail.com>"
|
|
homepage="http://mattmahoney.net/dc/zpaq.html"
|
|
distfiles="http://mattmahoney.net/dc/zpaq${version//\./}.zip"
|
|
create_wrksrc=yes
|
|
checksum=9120cf4fb1afdecea3ac4f690d7b0577f7cb004ca6b152856edd8ac444f0d919
|
|
|
|
do_build() {
|
|
${CXX} ${CFLAGS} zpaq.cpp libzpaq.cpp -pthread -o zpaq ${LDFLAGS}
|
|
pod2man zpaq.pod > zpaq.1
|
|
}
|
|
do_install() {
|
|
vbin zpaq
|
|
vman zpaq.1
|
|
}
|