contrib/fltk/Pkgfile

49 lines
1.6 KiB
Plaintext
Raw Normal View History

2006-11-30 11:10:34 +01:00
# Description: Cross-platform C++ GUI toolkit for Unix, Windows and Mac OS X.
2020-06-01 17:45:48 +02:00
# URL: https://www.fltk.org/
2014-11-10 13:28:07 +01:00
# Maintainer: Danny Rawlins, crux at romster dot me
2020-07-26 13:32:47 +02:00
# Depends on: alsa-lib libjpeg-turbo mesa util-linux xorg-libxft xorg-libxinerama
2006-11-30 11:10:34 +01:00
name=fltk
2019-08-18 08:31:15 +02:00
version=1.3.5
2018-01-31 12:02:33 +01:00
release=1
2019-08-18 08:31:15 +02:00
source=(https://fltk.org/pub/$name/${version%-*}/$name-$version-source.tar.bz2
fltk-fix-lib-mess.patch)
2006-11-30 11:10:34 +01:00
build() {
2019-08-18 08:31:15 +02:00
# https://github.com/fltk/fltk/issues/20
2020-11-07 17:19:14 +01:00
patch -d $name-$version -p1 -i $SRC/fltk-fix-lib-mess.patch
2019-08-18 08:31:15 +02:00
2020-11-08 12:05:21 +01:00
# fltk currently has a problem with ninja that I don't want to investigate right now
#[[ -e /usr/bin/ninja ]] && PKGMK_FLTK+=' -G Ninja'
cmake -S $name-$version -B build $PKGMK_FLTK \
-D CMAKE_INSTALL_PREFIX=/usr \
-D FLTK_LIBDIR=/usr/lib \
-D CMAKE_BUILD_TYPE=Release \
2020-12-07 00:52:52 +01:00
-D CMAKE_CXX_FLAGS_RELEASE="$CXXFLAGS" \
-D CMAKE_C_FLAGS_RELEASE="$CFLAGS" \
2020-11-08 12:05:21 +01:00
-D OPTION_CREATE_LINKS=ON \
-D OPTION_BUILD_SHARED_LIBS=ON \
-D OpenGL_GL_PREFERENCE=GLVND \
-D OPTION_BUILD_HTML_DOCUMENTATION=OFF \
-Wno-dev
2006-11-30 11:10:34 +01:00
2020-11-07 17:19:14 +01:00
cmake --build build
DESTDIR=$PKG cmake --install build
2019-08-18 08:31:15 +02:00
# example apps and integration files, that are not covered by make install
for app in {blocks,checkers,sudoku}; do
2020-11-07 17:19:14 +01:00
install -D -m 0755 -t "$PKG/usr/bin/" "$SRC/build/bin/examples/$app"
2019-08-18 08:31:15 +02:00
2020-11-07 17:19:14 +01:00
install -D -m 0644 "$name-$version/test/desktop/$app.desktop" \
2019-08-18 08:31:15 +02:00
-t "$PKG/usr/share/applications/"
2020-11-07 17:19:14 +01:00
install -D -m 0644 "$name-$version/test/desktop/$app-32.png" \
2019-08-18 08:31:15 +02:00
"$PKG/usr/share/icons/hicolor/32x32/apps/$app.png"
2020-11-07 17:19:14 +01:00
install -D -m 0644 "$name-$version/test/desktop/$app-128.png" \
2019-08-18 08:31:15 +02:00
"$PKG/usr/share/icons/hicolor/128x128/apps/$app.png"
done
2019-08-18 08:31:15 +02:00
rm $PKG/usr/include/FL/README.Xcode
2006-11-30 11:10:34 +01:00
}