blob: d7d7560c7a1197c935d37477ddcb1d86684dbcf1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# Maintainer: aquova <austinbricker@protonmail.com>
# Contributor: Kaan Genc <aur@kaangenc.me>
# Contributor: DelightedCat <bottledlactose@gmail.com>
#
# !! IMPORTANT NOTE !!
#
# This package will NOT build straight out of the box.
# First off, you need to download the PURCHASED .deb file provided by the Aseprite developers.
#
# Place the downloaded .deb file next to this PKGBUILD and run makepkg.
# If it still not work, please ensure the .deb file has the right name.
#
pkgname=aseprite-bin
_pkgver=1.3.10-1
pkgver=${_pkgver//-/.}
pkgrel=1
pkgdesc="Create animated sprites and pixel art"
arch=('x86_64')
url="https://www.aseprite.org/"
license=('custom: aseprite EULA')
depends=(libglvnd fontconfig libxcursor)
provides=(aseprite)
conflicts=(aseprite)
source=("local://Aseprite_${_pkgver}_amd64.deb")
sha256sums=('44e4d0522c18a2c11125c53759ab56f66ac50a5fc62893607bcc9b75f28407f3')
package() {
tar xf data.tar.xz -C $pkgdir
chmod -R 755 $pkgdir/usr
chmod +x $pkgdir/usr/bin/aseprite
install -d "${pkgdir}/usr/share/licenses/${pkgname}/"
cp -r "${pkgdir}"/usr/share/doc/aseprite/EULA.txt \
"${pkgdir}/usr/share/licenses/${pkgname}/"
cp -r "${pkgdir}"/usr/share/doc/aseprite/docs/LICENSES.md \
"${pkgdir}/usr/share/licenses/${pkgname}/"
}
|