diff --git a/.archlinux/PKGBUILDs/README.md b/.archlinux/PKGBUILDs/README.md index 5e911160..4b964e30 100644 --- a/.archlinux/PKGBUILDs/README.md +++ b/.archlinux/PKGBUILDs/README.md @@ -6,7 +6,6 @@ Note that you can install multiple DEs and WMs at once, then switch between them ## Packages -- [bspwm-round-corners-git](/.archlinux/PKGBUILDs/bspwm-round-corners-git) - X11 window manager with border_radius support - [color-scripts](/.archlinux/PKGBUILDs/color-scripts) - Color scripts, purely for aesthetics - [tari-core](/.archlinux/PKGBUILDs/tari-core) - Meta package for my Arch Linux installation - [xeventbind](/.archlinux/PKGBUILDs/xeventbind) - Useful to change X DPI on resolution change diff --git a/.archlinux/PKGBUILDs/bspwm-round-corners-git/PKGBUILD b/.archlinux/PKGBUILDs/bspwm-round-corners-git/PKGBUILD deleted file mode 100644 index 2b3ad1b8..00000000 --- a/.archlinux/PKGBUILDs/bspwm-round-corners-git/PKGBUILD +++ /dev/null @@ -1,30 +0,0 @@ -pkgname=bspwm-round-corners-git -pkgver=0.9.5.r19.7b0cf3d -pkgrel=1 -pkgdesc="X11 window manager with border_radius support" -arch=('x86_64') -url="https://github.com/Javyre/bspwm" -provides=('bspwm') -conflicts=('bspwm') -license=('custom:BSD') -depends=('xcb-util' 'xcb-util-wm' 'xcb-util-keysyms') -makedepends=('git') -optdepends=('sxhkd: to define keyboard and pointer bindings' - 'xdo: for the example panel') -source=("$pkgname::git+https://github.com/Javyre/bspwm#branch=round_corners") -sha256sums=('SKIP') - -pkgver() { - cd "$pkgname" - printf "%s" "$(git describe --long | sed 's/\([^-]*-\)g/r\1/;s/-/./g')" -} - -build() { - make -C "$pkgname" PREFIX=/usr -} - -package() { - cd "$pkgname" - make PREFIX=/usr DESTDIR="$pkgdir" install - install -Dm644 LICENSE "$pkgdir/usr/share/licenses/bspwm/LICENSE" -}