bump version to 1.1.11, WARNING: upstream installs files from other projects

This commit is contained in:
Benoit Favre 2016-12-10 16:09:24 +01:00
parent cdf8471f44
commit 53bb60b0c9
2 changed files with 15 additions and 11 deletions

View File

@ -1,8 +1,8 @@
# Generated by mksrcinfo v8
# Sun Oct 23 18:44:16 UTC 2016
# Sat Dec 10 15:08:29 UTC 2016
pkgbase = aseprite
pkgdesc = Create animated sprites and pixel art
pkgver = 1.1.9
pkgver = 1.1.11
pkgrel = 1
url = http://www.aseprite.org/
arch = x86_64
@ -20,7 +20,9 @@ pkgbase = aseprite
depends = libwebp
conflicts = aseprite-git
conflicts = aseprite-gpl
source = git+https://github.com/aseprite/aseprite.git#tag=v1.1.9
conflicts = cmark
conflicts = gtest
source = git+https://github.com/aseprite/aseprite.git#tag=v1.1.11
source = aseprite.desktop
sha256sums = SKIP
sha256sums = 4faeb782805e3427eedb04d7485e3e2d4eac6680509515b521a9f64ef5d79490

View File

@ -3,7 +3,7 @@
# Contributor: Kamil Biduś <kamil.bidus@gmail.com>
pkgname=aseprite
pkgver=1.1.9
pkgver=1.1.11
pkgrel=1
pkgdesc='Create animated sprites and pixel art'
arch=('x86_64' 'i686')
@ -11,7 +11,7 @@ url='http://www.aseprite.org/'
license=('custom')
depends=('pixman' 'curl' 'giflib' 'zlib' 'libpng' 'libjpeg-turbo' 'tinyxml' 'freetype2' 'libwebp')
makedepends=('cmake')
conflicts=('aseprite-git' 'aseprite-gpl')
conflicts=('aseprite-git' 'aseprite-gpl' 'cmark' 'gtest')
source=("git+https://github.com/aseprite/aseprite.git#tag=v${pkgver}"
"aseprite.desktop")
sha256sums=('SKIP'
@ -20,10 +20,12 @@ sha256sums=('SKIP'
build() {
cd "$pkgname"
less EULA.txt
echo "Do you accept the EULA? yes/NO"
read reply
[ "$reply" == "yes" ] || exit 1
if [ -z "$ASEPRITE_ACCEPT_EULA" ]; then
less EULA.txt
echo "Do you accept the EULA? yes/NO (set ASEPRITE_ACCEPT_EULA=yes to skip this message)"
read reply
[ "$reply" == "yes" ] || exit 1
fi
mkdir -p build && cd build
git submodule update --init --recursive
@ -41,13 +43,13 @@ build() {
-DUSE_SHARED_FREETYPE=ON \
-DFREETYPE_INCLUDE_DIR=/usr/include/freetype2 \
-DCMAKE_INSTALL_PREFIX:STRING=/usr ..
make aseprite
make
}
package() {
cd "$pkgname"/build
make DESTDIR="$pkgdir/" install/fast
make DESTDIR="$pkgdir/" install
install -Dm644 "$srcdir/$pkgname.desktop" \
"$pkgdir/usr/share/applications/$pkgname.desktop"
install -Dm644 "../data/icons/ase48.png" \