Skip to content

Commit f372147

Browse files
committed
pkgbuild
1 parent b7953ea commit f372147

2 files changed

Lines changed: 4 additions & 6 deletions

File tree

.github/workflows/aur.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,6 @@ jobs:
2929
UserKnownHostsFile=/dev/null
3030
EOF
3131
32-
- name: Regenerate .SRCINFO
33-
run: |
34-
sudo apt-get update && sudo apt-get install -y base-devel
35-
makepkg --printsrcinfo > .SRCINFO
36-
3732
- name: Push to AUR
3833
run: |
3934
git config --global user.name "github-actions[bot]"

PKGBUILD

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# Maintainer: kamisaki <your-email@example.com>
22
# Description: A terminal wrap tool inspired by Spotify Wrapped
33

4-
54
pkgname=terminalwrap
65
pkgver=2.0.0
76
pkgrel=1
@@ -15,11 +14,15 @@ source=("$pkgname-$pkgver.tar.gz::https://github.com/xeyossr/terminalwrap/archiv
1514
sha256sums=('SKIP')
1615

1716
build() {
17+
1818
cd "$srcdir/$pkgname-$pkgver"
1919
go build -o terminalwrap main.go
20+
2021
}
2122

2223
package() {
24+
2325
cd "$srcdir/$pkgname-$pkgver"
2426
install -Dm755 terminalwrap "$pkgdir/usr/bin/terminalwrap"
27+
2528
}

0 commit comments

Comments
 (0)