2018-02-11 18:40:55 +01:00
|
|
|
VERSION="2.10"
|
|
|
|
SRCDIR="lzo-${VERSION}"
|
|
|
|
TARBALL="${SRCDIR}.tar.gz"
|
|
|
|
URL="http://www.oberhumer.com/opensource/lzo/download"
|
|
|
|
SHA256SUM="c0f892943208266f9b6543b3ae308fab6284c5c90e627931446fb49b4221a072"
|
2018-02-15 23:47:54 +01:00
|
|
|
DEPENDS="toolchain"
|
2019-02-27 14:22:03 +01:00
|
|
|
SUBPKG="lzo lzo-dev"
|
2018-02-11 18:40:55 +01:00
|
|
|
|
|
|
|
prepare() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
2018-09-02 14:19:23 +02:00
|
|
|
run_configure "$1"
|
2018-02-11 18:40:55 +01:00
|
|
|
make -j $NUMJOBS
|
|
|
|
}
|
|
|
|
|
|
|
|
deploy() {
|
2019-03-06 10:03:12 +01:00
|
|
|
make DESTDIR="$PKGDEPLOYDIR" install
|
|
|
|
cp $SCRIPTDIR/pkg/$PKGNAME/*.{files,desc} "$PKGDEPLOYDIR"
|
2018-02-11 18:40:55 +01:00
|
|
|
}
|
2018-05-06 17:23:31 +02:00
|
|
|
|
|
|
|
check_update() {
|
2019-07-07 16:17:16 +02:00
|
|
|
check_update_simple "$URL" "lzo" "tar.gz"
|
2019-03-06 10:03:12 +01:00
|
|
|
}
|