diff options
author | Thomas Braby | 2024-08-05 00:14:07 +0100 |
---|---|---|
committer | Thomas Braby | 2024-08-05 00:14:07 +0100 |
commit | c50a16ba4fd5ec8e96b416dcf10394f77715888b (patch) | |
tree | 56c6e01255ef928765f9c5b91376a09472513cc1 /PKGBUILD | |
parent | bd457e1b08f408ff57008a5b6333d55b1c1a27ae (diff) | |
download | aur-fltk-git.tar.gz |
build both static and shared libs
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -3,7 +3,7 @@ _pkgbase=fltk pkgbase=fltk-git pkgname=fltk-git -pkgver=1.4.0.r9205.f2544509c +pkgver=1.4.0.r11598.44a8508ff pkgrel=1 pkgdesc='Graphical user interface toolkit for X (Git version)' arch=('x86_64') @@ -15,6 +15,7 @@ provides=('fltk') conflicts=('fltk') source=('fltk::git+https://github.com/fltk/fltk.git') sha256sums=('SKIP') +options=('staticlibs') pkgver() { cd "${srcdir}/${_pkgbase}" @@ -38,7 +39,7 @@ build() { -DCMAKE_INSTALL_LIBDIR='lib' \ -DCMAKE_BUILD_TYPE='Release' \ -DFLTK_BUILD_TEST=0 \ - -DOPTION_BUILD_SHARED_LIBS=1 + -DFLTK_BUILD_SHARED_LIBS=1 make } |