Package Details: bsequencer-git 1.8.0.r0.g8f96f92-1

Git Clone URL: https://aur.archlinux.org/bsequencer-git.git (read-only, click to copy)
Package Base: bsequencer-git
Description: Multi channel MIDI step sequencer LV2 plugin (git version)
Upstream URL: https://github.com/sjaehn/BSEQuencer
Licenses: GPL3
Groups: lv2-plugins, pro-audio
Conflicts: bsequencer
Provides: bsequencer
Submitter: milkii
Maintainer: milkii (SpotlightKid)
Last Packager: SpotlightKid
Votes: 0
Popularity: 0.000000
First Submitted: 2019-04-17 20:41 (UTC)
Last Updated: 2020-09-14 21:01 (UTC)

Required by (0)

Sources (1)

Latest Comments

SpotlightKid commented on 2019-08-18 09:02 (UTC) (edited on 2019-08-18 09:04 (UTC) by SpotlightKid)

There are some issues with this package, most importantly it installs the files in the wrong location. Here's a diff for the PKGBUILD:

diff --git a/PKGBUILD b/PKGBUILD
index 34df4b3..c1d27ec 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,31 +1,20 @@
 # Maintainer: Milk Brewster (milk on freenode irc)
+
 pkgname=bsequencer-git
-pkgver=r65.49dc212
+pkgver=r72.1b03eec
 pkgrel=1
 epoch=
 pkgdesc="Multi channel MIDI step sequencer LV2 plugin."
 arch=('x86_64')
 url="https://github.com/sjaehn/BSEQuencer"
 license=('GPL')
-groups=()
+groups=('lv2plugins' 'pro-audio')
 depends=('xorg-server' 'cairo' 'lv2')
-makedepends=()
-checkdepends=()
-optdepends=()
-provides=()
-conflicts=()
-replaces=()
-backup=()
-options=()
-install=
-changelog=
+makedepends=('git')
+provides=("${pkgname/-git}")
+conflicts=("${pkgname/-git}")
 source=("git+https://github.com/sjaehn/BSEQuencer")
-noextract=()
 md5sums=('SKIP')
-validpgpkeys=()
-
-# prepare() {
-# }

 pkgver() {
   cd "$srcdir"/BSEQuencer
@@ -33,20 +22,14 @@ pkgver() {
     git describe --long 2>/dev/null | sed 's/\([^-]*-g\)/r\1/;s/-/./g' ||
     printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
   )
- }
-
+}

 build() {
   cd "$srcdir"/BSEQuencer
   make
 }

-# check() {
-   # cd "$pkgname-$pkgver"
-   # make -k check
-# }
-
 package() {
   cd "$srcdir"/BSEQuencer
-  make install PREFIX="${pkgdir}/usr/lib/lv2" install 
+  make DESTDIR="${pkgdir}" PREFIX="/usr" install 
 }