contrib/frozen-bubble/Pkgfile
2023-03-04 08:46:13 -05:00

35 lines
1.0 KiB
Plaintext

# Description: Shoot balls and get 3 of the same colour in a group to make them drop.
# URL: http://www.frozen-bubble.org/
# Maintainer: John McQuah, jmcquah at disroot dot org
# Depends on: p5-compress-bzip2 p5-file-slurp p5-ipc-system-simple p5-locale-maketext-lexicon p5-sdl
name=frozen-bubble
version=2.2.1
release=1
source=(https://github.com/kthakore/$name/archive/$version/$name-$version.tar.gz
fix-buffer-size-when-formatting-current-date.patch
$name.desktop)
build() {
cd $name-$version
# https://bugzilla.redhat.com/show_bug.cgi?id=1541359
patch -p1 -i $SRC/fix-buffer-size-when-formatting-current-date.patch
sed -e 's|-Werror||' -i inc/My/Builder.pm
perl Build.PL installdirs=vendor
perl Build
perl Build install destdir="$PKG"
chmod -R u+w $PKG
install -D -m 0644 share/icons/frozen-bubble-icon-64x64.png \
$PKG/usr/share/pixmaps/frozen-bubble.png
install -D -m 0644 $SRC/frozen-bubble.desktop \
$PKG/usr/share/applications/frozen-bubble.desktop
find $PKG \( -name '.packlist' -o -name '*.bs' \) -delete
}