mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
60 lines
2.5 KiB
Bash
60 lines
2.5 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.18.4
|
||
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=('21ea9e905fb17d92d584c5cb73fb2bb0890e8f76e097da3ca417b3842196e80e1548e32bca9b1c257885995c462f065cca12211bc2eac4bcf320101a9425530e')
|
||
sha512sums_armv7h=('87d8f0ab76188fb6e0db6bb8cfede946b1e76466a16d2050612b3f7f02fea875e352315306b903fa721ff35ad916fabe97aa6c2ca831d9ad6165b92b925db2db')
|
||
sha512sums_aarch64=('094d580fd4a3d639f9105aabd40f076d5bf4a7b29141dc66e2692a34d0e5e41321b74e8b9e8ba90273a250b196ec57ede2366b53fe5d6399a6c1b8fd7c273f97')
|
||
|
||
prepare() {
|
||
# Fix permissions
|
||
find "$pkgname-sdk" -type d -exec chmod a+rx '{}' + \
|
||
-or -type f -exec chmod a+r '{}' +
|
||
|
||
cd "$pkgname-sdk/bin"
|
||
|
||
# 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 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:
|