mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
67 lines
2.7 KiB
Bash
67 lines
2.7 KiB
Bash
# Maintainer: Alexander Rødseth <rodseth@gmail.com>
|
||
# Maintainer: Felix Yan <felixonmars@archlinux.org>
|
||
# Maintainer: Orhun Parmaksız <orhun@archlinux.org>
|
||
# Contributor: T. Jameson Little <t.jameson.little at gmail dot com>
|
||
# Contributor: Usagi Ito <usagi@WonderRabbitProject.net>
|
||
# Contributor: siasia <http://pastebin.com/qsBEmNCw>
|
||
# Contributor: Julien Nicoulaud <julien.nicoulaud@gmail.com>
|
||
# Contributor: Jacob Bang <julemand101gmail.com>
|
||
|
||
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
||
# - added source and sha512 for ARMv7h, AArch64 builds of Dart
|
||
|
||
pkgname=dart
|
||
pkgver=2.17.7
|
||
pkgrel=1
|
||
pkgdesc='The dart programming language SDK'
|
||
arch=('x86_64' 'armv7h' 'aarch64')
|
||
url='https://www.dartlang.org/'
|
||
depends=('bash')
|
||
license=('BSD')
|
||
makedepends=('setconf')
|
||
options=('!strip')
|
||
source_x86_64+=("$pkgname-$pkgver-64.zip::https://storage.googleapis.com/dart-archive/channels/stable/release/$pkgver/sdk/dartsdk-linux-x64-release.zip")
|
||
source_armv7h+=("$pkgname-$pkgver-arm.zip::https://storage.googleapis.com/dart-archive/channels/stable/release/$pkgver/sdk/dartsdk-linux-arm-release.zip")
|
||
source_aarch64+=("$pkgname-$pkgver-arm64.zip::https://storage.googleapis.com/dart-archive/channels/stable/release/$pkgver/sdk/dartsdk-linux-arm64-release.zip")
|
||
sha512sums_x86_64=('a152eef906c7fcefd10d137bd5f43d6198286dff26f18caa44436848338cdfb629b0d07a9df57c4a29c6ed471a8545b516b39503cc85dd3ac079675560b7b898')
|
||
sha512sums_armv7h=('f49e8a1640ed06e2fe94a9fddf331e8c10a4b701a2307d5eb6a8fa06768ad144d1f5574108f9c792286ea866af07a5b67ac82a5611fdf8677e7da83f8e150a41')
|
||
sha512sums_aarch64=('dd093a63b458e315bb049be221fb9c3bdaddf0d48ddb69118247508414f864f958a116d12b9d9e6108dbb1ebfe2577d24c81c1edbe4d8d2310d8e2ef956460b1')
|
||
|
||
prepare() {
|
||
# Fix permissions
|
||
find "$pkgname-sdk" -type d -exec chmod a+rx '{}' + \
|
||
-or -type f -exec chmod a+r '{}' +
|
||
|
||
cd "$pkgname-sdk/bin"
|
||
|
||
# Configure paths
|
||
for _f in dart2js dartdevc; do
|
||
setconf $_f BIN_DIR "/opt/$pkgname-sdk/bin"
|
||
setconf $_f PROG_NAME "/opt/$pkgname-sdk/bin/$_f"
|
||
setconf $_f SDK_DIR "/opt/$pkgname-sdk/"
|
||
done
|
||
|
||
# Extract license (AUTHORS and LICENSE files are missing)
|
||
head -n5 "../include/dart_api.h" > ../../LICENSE
|
||
}
|
||
|
||
package() {
|
||
# Create directories
|
||
install -d "$pkgdir"{"/opt/$pkgname-sdk",/usr/{bin,"share/doc/$pkgname"}}
|
||
|
||
# Package the files
|
||
cp -a "$pkgname-sdk/"* "$pkgdir/opt/$pkgname-sdk/"
|
||
|
||
# Set up symbolic links for the executables
|
||
for f in dart dart2js dartdevc dartaotruntime; do
|
||
ln -s "/opt/$pkgname-sdk/bin/$f" "$pkgdir/usr/bin/$f"
|
||
done
|
||
|
||
# Package documentation
|
||
install -Dm644 "$pkgdir/opt/$pkgname-sdk/README" -t "$pkgdir/usr/share/doc/$pkgname"
|
||
|
||
# BSD License
|
||
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
|
||
}
|
||
|
||
# vim:set ts=2 sw=2 et:
|