Disabled using the shared freetype library due to a missing file

This commit is contained in:
Wilson E. Alvarez 2017-11-16 09:07:55 -04:00
parent 7f2175e6bf
commit c6c5dea28c
2 changed files with 9 additions and 5 deletions

View File

@ -1,9 +1,9 @@
# Generated by mksrcinfo v8 # Generated by mksrcinfo v8
# Thu Nov 16 12:36:25 UTC 2017 # Thu Nov 16 13:07:31 UTC 2017
pkgbase = aseprite pkgbase = aseprite
pkgdesc = Create animated sprites and pixel art pkgdesc = Create animated sprites and pixel art
pkgver = 1.2.4 pkgver = 1.2.4
pkgrel = 1 pkgrel = 2
url = http://www.aseprite.org/ url = http://www.aseprite.org/
arch = x86_64 arch = x86_64
arch = i686 arch = i686

View File

@ -5,7 +5,7 @@
pkgname=aseprite pkgname=aseprite
pkgver=1.2.4 pkgver=1.2.4
pkgrel=1 pkgrel=2
pkgdesc='Create animated sprites and pixel art' pkgdesc='Create animated sprites and pixel art'
arch=('x86_64' 'i686') arch=('x86_64' 'i686')
url="http://www.aseprite.org/" url="http://www.aseprite.org/"
@ -40,9 +40,13 @@ build() {
-DUSE_SHARED_LIBLOADPNG=OFF \ -DUSE_SHARED_LIBLOADPNG=OFF \
-DUSE_SHARED_TINYXML=ON \ -DUSE_SHARED_TINYXML=ON \
-DENABLE_UPDATER=OFF \ -DENABLE_UPDATER=OFF \
-DUSE_SHARED_FREETYPE=ON \ -DUSE_SHARED_FREETYPE=OFF \
-DFREETYPE_INCLUDE_DIR=/usr/include/freetype2 \
-DCMAKE_INSTALL_PREFIX:STRING=/usr .. -DCMAKE_INSTALL_PREFIX:STRING=/usr ..
# TODO: Note that using the shared freetype library was disabled for aseprite v1.24 due to a missing header
# Double check if we can use the shared library later on to minimize package size
#-DFREETYPE_INCLUDE_DIR=/usr/include/freetype2 \
make $MAKEFLAGS make $MAKEFLAGS
} }