diff options
author | Sebastiaan de Schaetzen | 2020-04-07 09:11:14 +0200 |
---|---|---|
committer | Sebastiaan de Schaetzen | 2020-04-07 09:11:14 +0200 |
commit | 6f27f033baadfe07af721c2bade7a014875b30bf (patch) | |
tree | c42cbc55ebf40909e0de8e3e66b3103b9803ad89 | |
parent | df3bbe369e7071ea6c4aa9d16f460f25aeae69ec (diff) | |
download | aur-6f27f033baadfe07af721c2bade7a014875b30bf.tar.gz |
Update to v3.8.2
-rw-r--r-- | .SRCINFO | 8 | ||||
-rw-r--r-- | .gitignore | 4 | ||||
-rw-r--r-- | PKGBUILD | 9 |
3 files changed, 12 insertions, 9 deletions
@@ -1,14 +1,14 @@ pkgbase = dexed-ide pkgdesc = IDE for the D programming language, its compilers, tools and libraries - pkgver = 3.7.10 + pkgver = 3.8.2 pkgrel = 1 - url = https://github.com/Basile-z/dexed + url = https://gitlab.com/basile.b/dexed arch = x86_64 license = Boost depends = dcd depends = dscanner - source = https://github.com/Basile-z/dexed/releases/download/v3.7.10/dexed.3.7.10.linux64.zip - md5sums = b2e6318715350ee39c7a81f729794d9b + source = https://gitlab.com/basile.b/dexed/-/jobs/499174438/artifacts/raw/setup/output/dexed.3.8.2.linux64.zip + md5sums = f4b494587f31d1296a96431fc5eaf5ca pkgname = dexed-ide diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000000..5c2710217e52 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +*.tar.xz +*.zip +pkg/ +src/ @@ -1,18 +1,17 @@ # Maintainer: Sebastiaan de Schaetzen <sebastiaan.de.schaetzen@gmail.com> pkgname=dexed-ide -pkgver=3.7.10 +pkgver=3.8.2 pkgrel=1 pkgdesc="IDE for the D programming language, its compilers, tools and libraries" arch=(x86_64) -url="https://github.com/Basile-z/dexed" +url="https://gitlab.com/basile.b/dexed" license=('Boost') depends=(dcd dscanner) checkdepends=() -source=(https://github.com/Basile-z/dexed/releases/download/v$pkgver/dexed.$pkgver.linux64.zip) - +source=(https://gitlab.com/basile.b/dexed/-/jobs/499174438/artifacts/raw/setup/output/dexed.3.8.2.linux64.zip) +md5sums=('f4b494587f31d1296a96431fc5eaf5ca') package() { mkdir -p $pkgdir/usr/bin cp $srcdir/dexed-x86_64/{dexed,dastworx} $pkgdir/usr/bin } -md5sums=('b2e6318715350ee39c7a81f729794d9b') |