makedeb


bspwm-git 11560df32022.02.15-2


A tiling window manager based on binary space partitioning

Click here to go back to the commit logs for bspwm-git.

Commit:


Hash: 2421d2c4fe1cf4e38878368d16224076c225e5fe

Message: minor fix

Diff


diff --git a/.SRCINFO b/.SRCINFO
index 2a14ce3..fe9c724 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -15,6 +15,7 @@ pkgbase = bspwm-git
 	depends = libxcb-ewmh2
 	depends = libxcb-keysyms1
 	optdepends = sxhkd: to define keyboard and pointer bindings
+	optdepends = font-terminus: for the example panel
 	optdepends = python3: for some scripting examples
 	provides = bspwm
 	conflicts = bspwm
diff --git a/PKGBUILD b/PKGBUILD
index edc1ed0..b6c2ef2 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -12,15 +12,15 @@ makedepends=('git' 'libxcb-keysyms1-dev')
 optdepends=('sxhkd: to define keyboard and pointer bindings'
 	    #'xtitle-git: for the example panel'
 	    #'sutils-git: for the example panel'
-	    #'terminus-font: for the example panel'
+	    'font-terminus: for the example panel'
 	    'python3: for some scripting examples')
-source=("$pkgname::git://github.com/baskerville/${_pkgname}.git")
+source=("${pkgname}::git://github.com/baskerville/${_pkgname}.git")
 md5sums=('SKIP')
 provides=("bspwm")
 conflicts=("bspwm")
 
 pkgver() {
-  cd $pkgname
+  cd ${pkgname}
     _tag=$(git describe --tags | sed -e 's:-:.:g') # tag is mobile, and switches between numbers and letters, can't use it for versioning
     _commits=$(git rev-list --count HEAD | sed 's:-:.:g') # total commits is the most sane way of getting incremental pkgver
     _date=$(git log -1 --date=short --pretty=format:%cd)
@@ -29,12 +29,12 @@ pkgver() {
 
 
 build() {
-  cd $pkgname
+  cd ${pkgname}
   make PREFIX=/usr
 }
 
 package() {
-  cd $pkgname
-  make PREFIX=/usr DESTDIR="$pkgdir" install
+  cd ${pkgname}
+  make PREFIX=/usr DESTDIR="${pkgdir}" install
   install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
 }