Appropriately rename my PKGBUILD directory
This commit is contained in:
parent
78fba911e7
commit
b8c0445d9c
@ -59,7 +59,7 @@ if [[ $CLI == "YES" ]] ; then
|
|||||||
else
|
else
|
||||||
pkgname="emacs-phundrak-git"
|
pkgname="emacs-phundrak-git"
|
||||||
fi
|
fi
|
||||||
pkgver=28.0.60.150971
|
pkgver=28.0.90.151075
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
pkgdesc="GNU Emacs. Development master branch with Phundrak’s tweaks."
|
pkgdesc="GNU Emacs. Development master branch with Phundrak’s tweaks."
|
||||||
arch=('x86_64')
|
arch=('x86_64')
|
@ -1,25 +1,20 @@
|
|||||||
# Maintainer: Lucien Cartier-Tilet <lucien@phundrak.com>
|
# Maintainer: Lucien Cartier-Tilet <lucien@phundrak.com>
|
||||||
pkgname=pumopm-git
|
pkgname=pumopm-bin
|
||||||
pkgver=0.1.1.r1.g4fd33bf
|
pkgver=0.1.1
|
||||||
pkgrel=3
|
pkgrel=3
|
||||||
pkgdesc="A tiny power manager written in Rust"
|
pkgdesc="A tiny power manager written in Rust"
|
||||||
arch=('i686' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64')
|
arch=('i686' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64')
|
||||||
url="https://labs.phundrak.com/phundrak/pumopm"
|
url="https://labs.phundrak.com/phundrak/pumopm"
|
||||||
license=('GPL3')
|
license=('GPL3')
|
||||||
depends=()
|
depends=()
|
||||||
makedepends=('rustup' 'git')
|
makedepends=('rustup')
|
||||||
options=('strip' 'zipman')
|
options=('strip' 'zipman')
|
||||||
source=("$pkgname::git+https://labs.phundrak.com/phundrak/pumopm.git#branch=develop")
|
source=("${pkgname%-bin}::https://labs.phundrak.com/phundrak/pumopm/archive/$pkgver.tar.gz")
|
||||||
sha512sums=('SKIP')
|
|
||||||
conflicts=('pumopm' 'pumopm-bin')
|
|
||||||
# If Phundrak’s Gitea takes too long to answer, or if it is down, use the
|
# If Phundrak’s Gitea takes too long to answer, or if it is down, use the
|
||||||
# Github mirror
|
# Github mirror
|
||||||
# source=("$pkgname}::git+https://github.com/Phundrak/pumopm.git#branch=develop")
|
# source=("${pkgname%-bin}::https://github.com/Phundrak/pumopm/archive/$pkgver.tar.gz")
|
||||||
|
md5sums=('347a95efacdbf9f8ab3b2da6a7eff6cc')
|
||||||
pkgver() {
|
conflicts=('pumopm' 'pumopm-git')
|
||||||
cd "$pkgname"
|
|
||||||
git describe --tags --long | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
|
|
||||||
}
|
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
cd "$pkgname"
|
cd "$pkgname"
|
||||||
@ -34,9 +29,13 @@ build() {
|
|||||||
|
|
||||||
package() {
|
package() {
|
||||||
cd "$pkgname"
|
cd "$pkgname"
|
||||||
|
echo EXE
|
||||||
install -Dm755 "target/release/pumopm" "$pkgdir/usr/bin/pumopm"
|
install -Dm755 "target/release/pumopm" "$pkgdir/usr/bin/pumopm"
|
||||||
|
echo LICENSE
|
||||||
install -Dm644 "LICENSE" "$pkgdir/usr/share/licenses/${pkgname}/LICENSE"
|
install -Dm644 "LICENSE" "$pkgdir/usr/share/licenses/${pkgname}/LICENSE"
|
||||||
|
echo MAN
|
||||||
install -Dm644 "pumopm.1" "$pkgdir/usr/share/man/man1/pumopm.1"
|
install -Dm644 "pumopm.1" "$pkgdir/usr/share/man/man1/pumopm.1"
|
||||||
|
echo SERVCE
|
||||||
install -Dm644 "pumopm.service" "$pkgdir/usr/lib/systemd/system/pumopm.service"
|
install -Dm644 "pumopm.service" "$pkgdir/usr/lib/systemd/system/pumopm.service"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user