contrib/scummvm/Pkgfile

22 lines
502 B
Plaintext
Raw Normal View History

2023-02-16 18:00:01 +01:00
# Description: Script Creation Utility for Maniac Mansion Virtual Machine
# URL: https://www.scummvm.org/
# Maintainer: Tim Biermann, tbier at posteo dot de
2023-12-17 15:22:11 +01:00
# Depends on: flac libmad libmpeg2
2023-02-16 18:00:01 +01:00
name=scummvm
2024-03-16 09:46:31 +01:00
version=2.8.1
2023-02-16 18:00:01 +01:00
release=1
source=(https://downloads.scummvm.org/frs/scummvm/$version/$name-$version.tar.xz)
build() {
cd $name-$version
2023-07-15 16:52:27 +02:00
2023-12-17 15:22:11 +01:00
./configure --prefix=/usr \
--enable-release \
--enable-all-engines
make -j ${JOBS:-1}
2023-02-16 18:00:01 +01:00
make DESTDIR=$PKG install
2023-07-15 16:52:27 +02:00
2023-02-16 18:00:01 +01:00
rm -rf $PKG/usr/share/doc
}