blob: 809060c9b4db99944ac25db3207f309116042aa4 (
plain) (
tree)
|
|
# Contributor: A. Wilcox <awilfox@adelielinux.org>
# Maintainer: A. Wilcox <awilfox@adelielinux.org>
pkgname=smake
pkgver=1.2.5
pkgrel=0
pkgdesc="Highly portable Unix make implementation"
url="https://sourceforge.net/projects/s-make/"
arch="all"
options="!check" # No test suite.
license="CDDL-1.0 AND GPL-2.0-only"
depends=""
makedepends=""
subpackages="$pkgname-doc"
source="https://download.sourceforge.net/s-make/smake-$pkgver.tar.bz2"
prepare() {
cd "$builddir"
default_prepare
sed -i -e "s|opt/schily|usr|" \
$(find ./ -type f -name \*.[0-9ch] -exec grep -l 'opt/schily' '{}' '+')
}
build() {
cd "$builddir"
export MAKEFLAGS=""
make INS_BASE=/usr
}
package() {
cd "$builddir"
export MAKEFLAGS=""
make INS_BASE=/usr DESTDIR="$pkgdir" install
}
sha512sums="15131f57942d6ea611602afa1f3d3d3d1892b0e7f0f6e5b1ace7f69f1acb7bd09403b8c70e380204cff75512f5824daef81d59205d758c93f2583b40caa873a8 smake-1.2.5.tar.bz2"
|