aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAqua-sama <aqua@iserlohn-fortress.net>2018-07-17 15:41:19 +0200
committerAqua-sama <aqua@iserlohn-fortress.net>2018-07-17 15:41:19 +0200
commitfc15e5bd27cdb70966d77c175568e28f44eba3df (patch)
treef07183acb92c8ec49ea2377399fd6cee7a401038
parentSwitch vcs to git (diff)
downloadsmolbote-fc15e5bd27cdb70966d77c175568e28f44eba3df.tar.xz
Fix PKGBUILD
-rw-r--r--CMakeLists.txt2
-rw-r--r--linux/makepkg/PKGBUILD14
2 files changed, 8 insertions, 8 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index ed80038..ba57c85 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -65,7 +65,7 @@ endif()
# Summarize
message(STATUS "=== Configuration summary ===")
feature_summary(WHAT ALL)
-message(STATUS "Building ${poi_NAME} ${VerInfo}; version ${VerDescribe} ${VerBranch}:${VerCommit}")
+message(STATUS "Building ${poi_NAME} ${VerTag}; version ${VerDescribe} ${VerBranch}:${VerCommit}")
message(STATUS "vendor.cmake: ${VENDOR}")
message(STATUS "CXX compiler: ${CMAKE_CXX_COMPILER_ID}")
message(STATUS "C++ flags: ${CMAKE_CXX_FLAGS}")
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
}