PKGBUILDs/community/dart/PKGBUILD

61 lines
2.5 KiB
Bash
Raw Normal View History

2016-10-13 23:46:43 +00:00
# Maintainer: Alexander Rødseth <rodseth@gmail.com>
# Maintainer: Felix Yan <felixonmars@archlinux.org>
2022-03-17 00:14:15 +00:00
# Maintainer: Orhun Parmaksız <orhun@archlinux.org>
2016-10-13 23:46:43 +00:00
# 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>
2018-08-31 00:22:51 +00:00
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
2019-03-10 04:07:53 +00:00
# - added source and sha512 for ARMv7h, AArch64 builds of Dart
2016-10-13 23:46:43 +00:00
pkgname=dart
2022-09-17 14:10:13 +00:00
pkgver=2.18.1
2019-11-15 06:06:40 +00:00
pkgrel=1
2016-10-13 23:46:43 +00:00
pkgdesc='The dart programming language SDK'
2019-03-10 04:07:53 +00:00
arch=('x86_64' 'armv7h' 'aarch64')
2019-05-31 18:10:47 +00:00
url='https://www.dartlang.org/'
depends=('bash')
2016-10-13 23:46:43 +00:00
license=('BSD')
makedepends=('setconf')
options=('!strip')
2020-05-15 20:04:41 +00:00
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")
2022-09-17 14:10:13 +00:00
sha512sums_x86_64=('2edbf2d20df67bdd22c281808813621e9b80edadd9b6e13ef1524fc5bc0773decd80ddb43acb952fbe51ef1e65ed12f3736eb63cc8b4d3013f42481cd6122bc1')
sha512sums_armv7h=('dabb0a5f26f025afe3f233eb868989c973702b0af074660aeaa3a1855848b92f7707d19fc27a86ede77f7c1196c36537902a14e1fb65c47d5d8e71aa33a69f2b')
sha512sums_aarch64=('8b21958be165b60e23665b1a290fcd0c344c7334c15eb340ecbc5ea810d94f9f4aab0319bb15502c4c5d109ceaa4589c10345429ce05677c54bc747734b7c5f7')
2016-10-13 23:46:43 +00:00
prepare() {
# Fix permissions
2019-05-31 18:10:47 +00:00
find "$pkgname-sdk" -type d -exec chmod a+rx '{}' + \
-or -type f -exec chmod a+r '{}' +
2016-10-13 23:46:43 +00:00
cd "$pkgname-sdk/bin"
# Extract license (AUTHORS and LICENSE files are missing)
head -n5 "../include/dart_api.h" > ../../LICENSE
}
package() {
# Create directories
2022-03-17 00:14:15 +00:00
install -d "$pkgdir"{"/opt/$pkgname-sdk",/usr/{bin,"share/doc/$pkgname"}}
2016-10-13 23:46:43 +00:00
# Package the files
cp -a "$pkgname-sdk/"* "$pkgdir/opt/$pkgname-sdk/"
# Set up symbolic links for the executables
2022-08-31 19:09:30 +00:00
for f in dart dartaotruntime; do
2016-10-13 23:46:43 +00:00
ln -s "/opt/$pkgname-sdk/bin/$f" "$pkgdir/usr/bin/$f"
done
2022-03-17 00:14:15 +00:00
# Package documentation
install -Dm644 "$pkgdir/opt/$pkgname-sdk/README" -t "$pkgdir/usr/share/doc/$pkgname"
2016-10-13 23:46:43 +00:00
# BSD License
2022-03-17 00:14:15 +00:00
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
2016-10-13 23:46:43 +00:00
}
# vim:set ts=2 sw=2 et: