diff options
author | sbyx <steven@midlink.org> | 2014-08-25 16:51:38 +0200 |
---|---|---|
committer | sbyx <steven@midlink.org> | 2014-08-25 16:51:38 +0200 |
commit | ef10bde4d0f475a96b910c8f82b7c942eac62f7b (patch) | |
tree | d850947ae96e3d95feb84186f001794b30d44b44 /libs/libsoxr/Makefile | |
parent | 8c5ab711cc1c30c23c0898264db6754da5a34acc (diff) |
Revert "libsoxr – The SoX Resampler library – add package request"
Diffstat (limited to 'libs/libsoxr/Makefile')
-rw-r--r-- | libs/libsoxr/Makefile | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/libs/libsoxr/Makefile b/libs/libsoxr/Makefile deleted file mode 100644 index 03ad713da..000000000 --- a/libs/libsoxr/Makefile +++ /dev/null @@ -1,62 +0,0 @@ -# -# Copyright (C) 2014 OpenWrt.org -# -# This is free software, licensed under the GNU General Public License v2. -# See /LICENSE for more information. -# updated to work with latest source from abrasive -# - -include $(TOPDIR)/rules.mk - -PKG_NAME:=libsoxr -PKG_VERSION:=0.1.1 -PKG_RELEASE:=1 - -PKG_SOURCE_PROTO:=git -PKG_SOURCE_URL:=git://git.code.sf.net/p/soxr/code -PKG_SOURCE_VERSION:=HEAD -PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION) -PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz -PKG_LICENSE:=LGPL-2.0 - -PKG_FIXUP:=libtool -PKG_REMOVE_FILES:=autogen.sh - -PKG_BUILD_PARALLEL:=1 - -include $(INCLUDE_DIR)/package.mk - -define Build/Configure - $(CP) ./files/* $(PKG_BUILD_DIR)/ - $(call Build/Configure/Default, ) -endef - -define Package/libsoxr - SECTION:=libs - CATEGORY:=Libraries - TITLE:=The SoX Resampler library - URL:=http://sourceforge.net/projects/soxr/ - MAINTAINER:=Mike Brady <mikebrady@eircom.net> - DEPENDS:= +libpthread -endef - -define Package/libsoxr/description - The SoX Resampler library - High quality, one-dimensional sample-rate conversion library -endef - - -define Build/InstallDev - $(INSTALL_DIR) $(1)/usr/include - $(CP) $(PKG_BUILD_DIR)/src/soxr.h $(1)/usr/include/ - $(INSTALL_DIR) $(1)/usr/lib - $(CP) $(PKG_BUILD_DIR)/src/*.a $(1)/usr/lib/ -endef - -define Package/libsoxr/install - $(INSTALL_DIR) $(1)/usr/lib - $(CP) $(PKG_BUILD_DIR)/src/*.a $(1)/usr/lib/ -endef - - -$(eval $(call BuildPackage,libsoxr)) |