-
-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Makefile: update man page build for new path, remove man pages when make uninstall is invoked * contrib/PKGBUILD: update man page build for new path, replace '' with "" for more uniformity, some more changes * move *.scd to docs/*.scd
- Loading branch information
1 parent
484a235
commit 59e3096
Showing
6 changed files
with
29 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,27 @@ | ||
# Maintainer: Aakash Sharma <[email protected]> | ||
# Contributor: Sergey A. <[email protected]> | ||
# Contributor: rv178 <[email protected]> | ||
|
||
pkgname='swhkd-git' | ||
_pkgname="swhkd" | ||
pkgver=1 | ||
pkgname="${_pkgname}-git" | ||
pkgver=.543.gf6ea9d6 | ||
pkgrel=1 | ||
arch=('x86_64') | ||
arch=("x86_64") | ||
url="https://github.com/waycrate/swhkd" | ||
pkgdesc="A display server independent hotkey daemon inspired by sxhkd." | ||
license=('BSD') | ||
depends=('polkit') | ||
makedepends=('rustup' 'make' 'git' 'scdoc') | ||
conflicts=('swhkd-musl-git') | ||
source=("$_pkgname::git+https://github.com/waycrate/$_pkgname") | ||
sha256sums=('SKIP') | ||
license=("BSD") | ||
depends=("polkit") | ||
makedepends=("rustup" "make" "git" "scdoc") | ||
conflicts=("swhkd-musl-git") | ||
source=("${_pkgname}::git+${url}.git") | ||
sha256sums=("SKIP") | ||
|
||
build(){ | ||
cd "$_pkgname" | ||
scdoc < ./swhkd.1.scd > swhkd.1.gz | ||
scdoc < ./swhks.1.scd > swhks.1.gz | ||
scdoc < ./swhkd.5.scd > swhkd.5.gz | ||
scdoc < ./swhkd-keys.5.scd > swhkd-keys.5.gz | ||
scdoc < ./docs/swhkd.1.scd > ./docs/swhkd.1.gz | ||
scdoc < ./docs/swhks.1.scd > ./docs/swhks.1.gz | ||
scdoc < ./docs/swhkd.5.scd > ./docs/swhkd.5.gz | ||
scdoc < ./docs/swhkd-keys.5.scd > ./docs/swhkd-keys.5.gz | ||
make setup | ||
make | ||
} | ||
|
@@ -31,11 +32,11 @@ package() { | |
install -Dm 755 ./target/release/swhks "$pkgdir/usr/bin/swhks" | ||
|
||
install -Dm 644 -o root ./com.github.swhkd.pkexec.policy -t "$pkgdir/usr/share/polkit-1/actions" | ||
install -Dm 644 ./*.1.gz -t "$pkgdir/usr/share/man/man1/" | ||
install -Dm 644 ./*.5.gz -t "$pkgdir/usr/share/man/man5/" | ||
install -Dm 644 ./docs/*.1.gz -t "$pkgdir/usr/share/man/man1/" | ||
install -Dm 644 ./docs/*.5.gz -t "$pkgdir/usr/share/man/man5/" | ||
} | ||
|
||
pkgver() { | ||
cd $_pkgname | ||
echo "$(grep '^version =' Cargo.toml|head -n1|cut -d\" -f2|cut -d\- -f1).$(git rev-list --count HEAD).g$(git rev-parse --short HEAD)" | ||
echo "$(grep "^version =" Cargo.toml|head -n1|cut -d\" -f2|cut -d\- -f1).$(git rev-list --count HEAD).g$(git rev-parse --short HEAD)" | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.