Merge pull request #1662 from beefcurtains/dumb

New package: dumb-1.0
This commit is contained in:
Juan RP 2015-05-29 11:47:01 +02:00
commit e91153c443
4 changed files with 93 additions and 0 deletions

1
srcpkgs/dumb-devel Symbolic link
View File

@ -0,0 +1 @@
dumb

View File

@ -0,0 +1,11 @@
--- %_example_wrksrc%/dumb2wav.c.orig
+++ %_example_wrksrc%/dumb2wav.c
@@ -221,7 +221,7 @@
if (!duh) {
duh = dumb_load_s3m(fn);
if (!duh) {
- duh = dumb_load_mod(fn);
+ duh = dumb_load_mod(fn, 0);
if (!duh) {
fprintf(stderr, "Unable to open %s!\n", fn);
return EXIT_FAILURE;

View File

@ -0,0 +1,19 @@
--- %_library_wrksrc%/cmake/CMakeLists.txt.orig
+++ %_library_wrksrc%/cmake/CMakeLists.txt
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 2.6)
project(libdumb C)
-set(CMAKE_C_FLAGS "-Wall -DDUMB_DECLARE_DEPRECATED -D_USE_SSE -msse -Wno-unused-variable -Wno-unused-but-set-variable")
+set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -DDUMB_DECLARE_DEPRECATED -Wno-unused-variable -Wno-unused-but-set-variable")
set(CMAKE_C_FLAGS_DEBUG "-ggdb -DDEBUGMODE=1 -D_DEBUG")
set(CMAKE_C_FLAGS_RELEASE "-ffast-math -O2 -DNDEBUG")
set(CMAKE_C_FLAGS_RELWITHDEBINFO "-ffast-math -g -O2 -DNDEBUG")
@@ -103,6 +103,7 @@
)
add_library(dumb ${SOURCES})
+set_target_properties(dumb PROPERTIES VERSION 1.0)
set_target_properties(dumb PROPERTIES DEBUG_POSTFIX d)
# Make sure the dylib install name path is set on OSX so you can include dumb in app bundles

62
srcpkgs/dumb/template Normal file
View File

@ -0,0 +1,62 @@
# Template file for 'dumb'
pkgname=dumb
version=1.0
revision=1
create_wrksrc=yes
wrksrc=sources
_library_wrksrc=${pkgname}-${version}/${pkgname}
_example_wrksrc=${pkgname}-0.9.3/examples
build_wrksrc=${_library_wrksrc}/cmake
build_style=cmake
configure_args="-DBUILD_SHARED_LIBS:BOOL=ON"
hostmakedepends="cmake"
short_desc="IT, XM, S3M and MOD player library"
maintainer="beefcurtains <beefcurtains@users.noreply.github.com>"
license="BSD"
homepage="http://${pkgname}.sourceforge.net/"
distfiles="
https://github.com/kode54/${pkgname}/archive/${version}.tar.gz
${SOURCEFORGE_SITE}/${pkgname}/${pkgname}/0.9.3/${pkgname}-0.9.3.tar.gz
"
checksum="
09ea62fd01f6e71cb28a8a8c1c1e356e7eb38f5e003b684e12eb1944c6d35fa5
8d44fbc9e57f3bac9f761c3b12ce102d47d717f0dd846657fb988e0bb5d1ea33
"
case "$XBPS_TARGET_MACHINE" in
i686*|x86_64*)
CFLAGS="-D_USE_SSE -msse"
;;
esac
pre_fetch() {
sed -i \
-e "s,%_library_wrksrc%,$_library_wrksrc," \
-e "s,%_example_wrksrc%,$_example_wrksrc," \
$PATCHESDIR/*
}
post_build() {
( set -x
${CC} ${wrksrc}/${_example_wrksrc}/dumb2wav.c \
${CFLAGS} ${CPPFLAGS} -I../../include \
${LDFLAGS} -L. -ldumb -lm -o dumb2wav )
}
pre_install() {
vbin build/dumb2wav
vdoc ../readme.txt
vdoc ../release.txt
vlicense ../licence.txt
}
dumb-devel_package() {
depends="${sourcepkg}>=${version}_${revision}"
short_desc+=" - development files"
pkg_install() {
vmove "usr/lib/*.so"
vmove usr/include
}
}