1
0
mirror of https://github.com/balkian/draft-bin.git synced 2025-04-28 07:39:05 +00:00

Compare commits

..

No commits in common. "2fcc6f2a7bb8b39e4067fce6d33d3faca307b6b3" and "2651b9f1c8e39c994d6fa3c14b66ee23d42983c0" have entirely different histories.

2 changed files with 22 additions and 14 deletions

View File

@ -1,14 +1,15 @@
pkgbase = draft-bin
pkgdesc = Draft client
pkgver = 0.17.6
pkgver = 0.16.0
pkgrel = 1
url = http://draft.sh
arch = i686
arch = x86_64
arch = aarch64
license = mit
source_x86_64 = draft-0.17.6::https://github.com/Azure/draft/releases/download/v0.17.6/draft-linux-amd64
md5sums_x86_64 = de77390d33a13a32c4de2b7b10df2ca8
source_aarch64 = draft-0.17.6::https://github.com/Azure/draft/releases/download/v0.17.6/draft-linux-arm64
md5sums_aarch64 = 180f700055ad0fc4a6e72c6ee246f07d
source_i686 = draft-0.16.0::https://azuredraft.blob.core.windows.net/draft/draft-v0.16.0-linux-386.tar.gz
md5sums_i686 = 1dfba3cbf5ddc72d171e57e9621fa8a6
source_x86_64 = draft-0.16.0::https://azuredraft.blob.core.windows.net/draft/draft-v0.16.0-linux-amd64.tar.gz
md5sums_x86_64 = 74bf02078018cbca80f15c25cea45907
pkgname = draft-bin

View File

@ -1,19 +1,26 @@
# Maintainer: larte <balkian@gmail.com>
# Maintainer: larte <lauri.arte@gmail.com>
# Contributor: Maxwell Pray a.k.a. Synthead <synthead@gmail.com>
pkgname=draft-bin
pkgdesc="Draft client"
pkgver=0.17.6
pkgver=0.16.0
pkgrel=1
arch=('x86_64' 'aarch64')
arch=('i686' 'x86_64')
url="http://draft.sh"
license=('mit')
conflicts=()
_draft_file=draft-$pkgver
source_x86_64=($_draft_file::https://github.com/Azure/draft/releases/download/v0.17.6/draft-linux-amd64 )
source_aarch64=($_draft_file::https://github.com/Azure/draft/releases/download/v0.17.6/draft-linux-arm64 )
md5sums_x86_64=('de77390d33a13a32c4de2b7b10df2ca8')
md5sums_aarch64=('180f700055ad0fc4a6e72c6ee246f07d')
source_i686=($_draft_file::https://azuredraft.blob.core.windows.net/draft/draft-v0.16.0-linux-386.tar.gz )
source_x86_64=($_draft_file::https://azuredraft.blob.core.windows.net/draft/draft-v0.16.0-linux-amd64.tar.gz )
md5sums_i686=('1dfba3cbf5ddc72d171e57e9621fa8a6')
md5sums_x86_64=('74bf02078018cbca80f15c25cea45907')
package() {
install -Dm 755 "$srcdir/draft-$pkgver" "$pkgdir/usr/bin/draft"
FOLDER="linux-386"
if [[ $CARCH -eq 'x86_64' ]];
then
FOLDER="linux-amd64"
fi
install -Dm 755 "$srcdir/$FOLDER/draft" "$pkgdir/usr/bin/draft"
}