diff options
author | Aqua-sama <aqua@iserlohn-fortress.net> | 2018-07-17 15:41:19 +0200 |
---|---|---|
committer | Aqua-sama <aqua@iserlohn-fortress.net> | 2018-07-17 15:41:19 +0200 |
commit | fc15e5bd27cdb70966d77c175568e28f44eba3df (patch) | |
tree | f07183acb92c8ec49ea2377399fd6cee7a401038 /linux/makepkg/PKGBUILD | |
parent | Switch vcs to git (diff) | |
download | smolbote-fc15e5bd27cdb70966d77c175568e28f44eba3df.tar.xz |
Fix PKGBUILD
Diffstat (limited to 'linux/makepkg/PKGBUILD')
-rw-r--r-- | linux/makepkg/PKGBUILD | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/linux/makepkg/PKGBUILD b/linux/makepkg/PKGBUILD index 872476e..c1ba1c2 100644 --- a/linux/makepkg/PKGBUILD +++ b/linux/makepkg/PKGBUILD @@ -60,23 +60,23 @@ build() { $srcdir/smolbote # Build - #make + make } package() { # Install - #make install + make install # icon and .desktop - #install -Dm644 "${srcdir}/smolbote-hg/data/poi.svg" "${pkgdir}/usr/share/icons/hicolor/scalable/apps/poi.svg" - #install -Dm644 "${srcdir}/smolbote-hg/linux/poi.desktop" "${pkgdir}/usr/share/applications/poi.desktop" + install -Dm644 "${srcdir}/smolbote/data/poi.svg" "${pkgdir}/usr/share/icons/hicolor/scalable/apps/poi.svg" + install -Dm644 "${srcdir}/smolbote/linux/poi.desktop" "${pkgdir}/usr/share/applications/poi.desktop" # firejail profile - #install -Dm644 "${srcdir}/smolbote-hg/data/poi.profile" "${pkgdir}/usr/local/lib/smolbote/poi.profile" + install -Dm644 "${srcdir}/smolbote/data/poi.profile" "${pkgdir}/usr/local/lib/smolbote/poi.profile" msg2 "Install manpage" - go-md2man -in $srcdir/linux/man/smolbote.md -out smolbote.7 + go-md2man -in $srcdir/smolbote/linux/man/smolbote.md -out smolbote.7 gzip smolbote.7 - #install -Dm644 smolbote.7.gz $pkgdir/usr/local/man/man7/smolbote.7.gz + install -Dm644 smolbote.7.gz $pkgdir/usr/local/man/man7/smolbote.7.gz } |