Add PKGBUILD
This commit is contained in:
parent
5908819af7
commit
fdf7914435
1 changed files with 30 additions and 0 deletions
30
PKGBUILD
Normal file
30
PKGBUILD
Normal file
|
@ -0,0 +1,30 @@
|
|||
# Maintainer: Gergő Sályi <salyigergo94@gmail.com>
|
||||
pkgname=multibg-sway
|
||||
pkgver=0.1.0
|
||||
pkgrel=1
|
||||
pkgdesc='Set a different wallpaper for the background of each Sway workspace'
|
||||
arch=('x86_64' 'i686' 'pentium4' 'armv7h' 'aarch64')
|
||||
url="https://github.com/gergo-salyi/multibg-sway"
|
||||
license=('MIT' 'Apache')
|
||||
depends=('gcc-libs' 'glibc')
|
||||
makedepends=('cargo')
|
||||
optdepends=('sway: window manager to set the wallpapers with')
|
||||
source=("$pkgname-$pkgver.tar.gz::https://static.crates.io/crates/$pkgname/$pkgname-$pkgver.crate")
|
||||
sha256sums=('e7a445d07c377bb23e691f3667540add098312d471e1b95d5e56691638f9c58c')
|
||||
|
||||
prepare() {
|
||||
cd "$pkgname-$pkgver"
|
||||
cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
|
||||
}
|
||||
|
||||
build() {
|
||||
cd "$pkgname-$pkgver"
|
||||
cargo build --frozen --release
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$pkgname-$pkgver"
|
||||
install -Dm0755 -t "$pkgdir/usr/bin/" "target/release/$pkgname"
|
||||
install -Dm644 "README.md" "$pkgdir/usr/share/doc/${pkgname}/README.md"
|
||||
install -Dm644 "LICENSE-MIT" "$pkgdir/usr/share/licenses/${pkgname}/LICENSE-MIT"
|
||||
}
|
Loading…
Add table
Reference in a new issue