summaryrefslogtreecommitdiff
path: root/package/jack
diff options
context:
space:
mode:
Diffstat (limited to 'package/jack')
-rw-r--r--package/jack/Makefile38
-rw-r--r--package/jack/files/jack.init28
-rw-r--r--package/jack/files/jack.postinst4
3 files changed, 0 insertions, 70 deletions
diff --git a/package/jack/Makefile b/package/jack/Makefile
deleted file mode 100644
index 1104b7797..000000000
--- a/package/jack/Makefile
+++ /dev/null
@@ -1,38 +0,0 @@
-# This file is part of the OpenADK project. OpenADK is copyrighted
-# material, please see the LICENCE file in the top-level directory.
-
-include $(ADK_TOPDIR)/rules.mk
-
-PKG_NAME:= jack
-PKG_VERSION:= 5013bed0b834d0af1ce36077e2b49ed95934fe99
-PKG_RELEASE:= 2
-PKG_DESCR:= audio connection kit (v1)
-PKG_SECTION:= mm/audio
-PKG_DEPENDS:= alsa-lib libsndfile libsamplerate libdb
-PKG_BUILDDEP:= db python3-host alsa-lib libsndfile libsamplerate
-PKG_NEEDS:= threads c++
-PKG_URL:= http://jackaudio.org
-PKG_SITES:= https://github.com/jackaudio/jack1.git
-PKG_OPT:= dev
-
-include $(ADK_TOPDIR)/mk/package.mk
-
-$(eval $(call PKG_template,JACK,jack,$(PKG_VERSION)-$(PKG_RELEASE),$(PKG_DEPENDS),$(PKG_DESCR),$(PKG_SECTION)))
-
-AUTOTOOL_STYLE:= autogen
-
-post-extract:
- (cd $(WRKBUILD); git submodule init)
- (cd $(WRKBUILD); git submodule update)
-
-jack-install:
- $(INSTALL_DIR) $(IDIR_JACK)/usr/lib/jack
- $(INSTALL_DIR) $(IDIR_JACK)/usr/bin
- $(CP) $(WRKINST)/usr/bin/jack* \
- $(IDIR_JACK)/usr/bin
- $(CP) $(WRKINST)/usr/lib*/libjack*.so* \
- $(IDIR_JACK)/usr/lib
- $(CP) $(WRKINST)/usr/lib*/jack/*.so* \
- $(IDIR_JACK)/usr/lib/jack
-
-include $(ADK_TOPDIR)/mk/pkg-bottom.mk
diff --git a/package/jack/files/jack.init b/package/jack/files/jack.init
deleted file mode 100644
index 53a81ac07..000000000
--- a/package/jack/files/jack.init
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/bin/sh
-#PKG jack
-#INIT 78
-. /etc/rc.conf
-
-case $1 in
-autostop) ;;
-autostart)
- test x"${jack:-NO}" = x"NO" && exit 0
- test x"$jack" = x"DAEMON" && test -x /bin/mksh && exec mksh -T- $0 start
- exec sh $0 start
- ;;
-start)
- (/usr/bin/jackd $jack_flags &) && sleep 0.1
- ;;
-stop)
- kill $(pgrep -f /usr/bin/jackd ) && sleep 0.1
- ;;
-restart)
- sh $0 stop
- sh $0 start
- ;;
-*)
- echo "Usage: $0 {start | stop | restart}"
- exit 1
- ;;
-esac
-exit $?
diff --git a/package/jack/files/jack.postinst b/package/jack/files/jack.postinst
deleted file mode 100644
index c28d4a148..000000000
--- a/package/jack/files/jack.postinst
+++ /dev/null
@@ -1,4 +0,0 @@
-#!/bin/sh
-. $IPKG_INSTROOT/etc/functions.sh
-add_rcconf jack NO
-add_rcconf jack_flags '-R -P70 -dalsa -r44100 -dhw:0 -p1024'