mirror of
https://github.com/pygos/build.git
synced 2024-11-05 11:37:10 +01:00
25 lines
488 B
Text
25 lines
488 B
Text
VERSION="2.10"
|
|
SRCDIR="lzo-${VERSION}"
|
|
TARBALL="${SRCDIR}.tar.gz"
|
|
URL="http://www.oberhumer.com/opensource/lzo/download"
|
|
SHA256SUM="c0f892943208266f9b6543b3ae308fab6284c5c90e627931446fb49b4221a072"
|
|
DEPENDS="toolchain"
|
|
SUBPKG="lzo lzo-dev"
|
|
|
|
prepare() {
|
|
return
|
|
}
|
|
|
|
build() {
|
|
run_configure "$1"
|
|
make -j $NUMJOBS
|
|
}
|
|
|
|
deploy() {
|
|
make DESTDIR="$PKGDEPLOYDIR" install
|
|
cp $SCRIPTDIR/pkg/$PKGNAME/*.{files,desc} "$PKGDEPLOYDIR"
|
|
}
|
|
|
|
check_update() {
|
|
check_update_simple "$URL" "lzo-" "tar.gz"
|
|
}
|