summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorGaoyang Zhang2021-10-15 14:35:35 +0800
committerGaoyang Zhang2021-10-15 14:38:14 +0800
commitf0f6f9ee44f8cb47c513010a8b4b767968c8ae33 (patch)
tree2d6790288fd302f9c56cc48c0f3ab8f9fe22ca86
parent3e9862ce40a06b8cdf7c3e4622f46c5790e8c57e (diff)
downloadaur-f0f6f9ee44f8cb47c513010a8b4b767968c8ae33.tar.gz
fix: updated LICENSE path
Signed-off-by: Gaoyang Zhang <gy@blurgy.xyz>
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD5
2 files changed, 4 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 9a99d91350f3..ce31463ee906 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = dt-cli
pkgdesc = Syncing dotfiles and more
pkgver = 0.1.0
- pkgrel = 3
+ pkgrel = 4
url = https://github.com/blurgyy/dt
arch = any
license = MIT OR Apache 2.0
diff --git a/PKGBUILD b/PKGBUILD
index 342d578a6edb..b89dcb064e97 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Gaoyang Zhang <gy@blurgy.xyz>
pkgname=dt-cli
pkgver=0.1.0
-pkgrel=3
+pkgrel=4
epoch=
pkgdesc="Syncing dotfiles and more"
arch=("any")
@@ -40,5 +40,6 @@ check() {
package() {
cd "dt-$pkgver"
install -Dm755 "target/release/dt-cli" "$pkgdir/usr/bin/dt-cli"
- install -Dm644 "LICENSE" "$pkgdir/usr/share/licenses/dt/LICENSE"
+ install -Dm644 "LICENSE-APACHE" "$pkgdir/usr/share/licenses/dt/LICENSE-APACHE"
+ install -Dm644 "LICENSE-MIT" "$pkgdir/usr/share/licenses/dt/LICENSE-MIT"
}