39 lines
957 B
Bash
39 lines
957 B
Bash
# Template file for 'execline'
|
|
pkgname=execline
|
|
version=2.1.5.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=8a3605a6db73183baa376bf2130e8b7eb75a5b5347c7f9144e520fe86bcb1142
|
|
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
|
|
}
|
|
}
|