40 lines
957 B
Bash
40 lines
957 B
Bash
# Template file for 'execline'
|
|
pkgname=execline
|
|
version=2.2.0.0
|
|
revision=1
|
|
build_style=gnu-configure
|
|
makedepends="skalibs-devel"
|
|
configure_args="--libdir=/usr/lib"
|
|
short_desc="A non-interactive scripting language"
|
|
maintainer="bougyman <bougyman@voidlinux.eu>"
|
|
license="ISC"
|
|
homepage="http://skarnet.org/software/execline/"
|
|
distfiles="http://skarnet.org/software/${pkgname}/${pkgname}-${version}.tar.gz"
|
|
checksum=93bd744f2e3ad204cb89f147efdc6ca4e622f9c6bfc9895e0b2cb8b0480029de
|
|
conflicts="ImageMagick" # /usr/bin/import
|
|
|
|
CFLAGS="-fPIC"
|
|
|
|
post_install() {
|
|
vlicense COPYING
|
|
vdoc README
|
|
vcopy "doc/*" usr/share/doc/${pkgname}
|
|
}
|
|
|
|
execline-doc_package() {
|
|
noarch=yes
|
|
short_desc+=" - Documentation"
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
pkg_install() {
|
|
vmove usr/share/doc
|
|
}
|
|
}
|
|
execline-devel_package() {
|
|
short_desc+=" - development files"
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib
|
|
}
|
|
}
|