blob: a938d316447496067b54f9bfa1ebab85609f4db5 (
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
|
# Maintainer: konez2k@aur
# Contributor: Wilson E. Alvarez <wilson.e.alvarez1@gmail.com>
# Contributor: Etzos <supercodingmonkey @ gmail.com>
# Contributer: Gordin <9ordin @t gmail dot com>
# Contributor: Geequlim <geequlim@gmail.com>
# Contributor: Antti Juhani Oja <antti.oja@gmail.com>
pkgname=texturepacker
pkgver=7.5.0
pkgrel=1
pkgdesc="Sprite sheet creator and image optimizer"
arch=('x86_64')
url="https://www.codeandweb.com/$pkgname"
license=("custom:$pkgname")
install="$pkgname.install"
depends=('shared-mime-info' 'hicolor-icon-theme' 'desktop-file-utils' 'grantlee'
'gcc-libs-multilib' 'qt5-svg' 'qt5-declarative' 'qt5-imageformats'
'qt5-quickcontrols')
source=("https://www.codeandweb.com/download/$pkgname/${pkgver}/TexturePacker-${pkgver}.deb")
sha256sums=("cd44fd36704db6016a36bedef4802a5ae2bad4c8eb42e0be8028b50f69b59067")
build() {
ar -x "TexturePacker-${pkgver}.deb"
}
package() {
cd ${srcdir}/
# Extract to the $pkgdir.
tar xJf data.tar.xz -C "${pkgdir}/"
# Enter $pkgdir.
cd ${pkgdir}/usr/lib/$pkgname/
install -Dm644 "${pkgdir}/usr/share/$pkgname/documents/LicenseAgreement.txt" \
"${pkgdir}/usr/share/licenses/${pkgname}/LicenseAgreement.txt"
}
|