summaryrefslogtreecommitdiff
path: root/aur/mapbox-studio
diff options
context:
space:
mode:
Diffstat (limited to 'aur/mapbox-studio')
-rw-r--r--aur/mapbox-studio/.SRCINFO16
-rw-r--r--aur/mapbox-studio/PKGBUILD26
2 files changed, 42 insertions, 0 deletions
diff --git a/aur/mapbox-studio/.SRCINFO b/aur/mapbox-studio/.SRCINFO
new file mode 100644
index 0000000..964221a
--- /dev/null
+++ b/aur/mapbox-studio/.SRCINFO
@@ -0,0 +1,16 @@
+# Generated by mksrcinfo v8
+# Fri Apr 8 19:39:33 UTC 2016
+pkgbase = mapbox-studio
+ pkgdesc = Vector tile driven map design
+ pkgver = 0.3.4
+ pkgrel = 1
+ url = https://mapbox.com/mapbox-studio-classic/
+ arch = x86_64
+ license = BSD
+ makedepends = unzip
+ noextract = mapbox-studio-linux-x64-v0.3.4.zip
+ source = https://mapbox.s3.amazonaws.com/mapbox-studio/mapbox-studio-linux-x64-v0.3.4.zip
+ sha1sums = 521e722fd5a317f48af2dc718447c9323041bd85
+
+pkgname = mapbox-studio
+
diff --git a/aur/mapbox-studio/PKGBUILD b/aur/mapbox-studio/PKGBUILD
new file mode 100644
index 0000000..54231e4
--- /dev/null
+++ b/aur/mapbox-studio/PKGBUILD
@@ -0,0 +1,26 @@
+# Maintainer: Yuval Adam <yuval at y3xz dot com> PGP-Key: 271386AA2EB7672F
+
+pkgname=mapbox-studio
+pkgver=0.3.4
+pkgrel=1
+pkgdesc="Vector tile driven map design"
+arch=('x86_64')
+url="https://mapbox.com/mapbox-studio-classic/"
+license=(BSD)
+depends=()
+makedepends=(unzip)
+source=("https://mapbox.s3.amazonaws.com/mapbox-studio/mapbox-studio-linux-x64-v${pkgver}.zip")
+noextract=("mapbox-studio-linux-x64-v${pkgver}.zip")
+sha1sums=('521e722fd5a317f48af2dc718447c9323041bd85')
+
+prepare() {
+ unzip -q mapbox-studio-linux-x64-v${pkgver}.zip
+}
+
+package() {
+ install -dm755 "${pkgdir}/opt"
+ cp --preserve=mode -r "mapbox-studio-linux-x64-v${pkgver}" "${pkgdir}/opt/${pkgname}"
+ ln -s "/opt/${pkgname}/atom" "${pkgdir}/opt/${pkgname}/mapbox-studio"
+}
+
+# vim:set ts=2 sw=2 et: