Skip to content

Commit bac7fd3

Browse files
committed
Merge pull request SynoCommunity#22 from GuillaumeSmaha/cytec-ffmpeg-update-clean
Clean ffmpeg package
2 parents 9c9d00c + 083e38b commit bac7fd3

File tree

32 files changed

+120
-156
lines changed

32 files changed

+120
-156
lines changed

cross/ffmpeg/Makefile

+28-19
Original file line numberDiff line numberDiff line change
@@ -5,27 +5,35 @@ PKG_DIST_NAME = $(PKG_NAME)-$(PKG_VERS).$(PKG_EXT)
55
PKG_DIST_SITE = http://www.ffmpeg.org/releases
66
PKG_DIR = $(PKG_NAME)-$(PKG_VERS)
77

8-
DEPENDS = cross/libsoxr cross/fdk-aac cross/flac cross/freetype cross/lame cross/libass cross/libbluray
9-
DEPENDS += cross/libopus cross/libtheora cross/libvorbis cross/libvpx cross/openjpeg cross/openssl
10-
DEPENDS += cross/rtmpdump cross/speex cross/x264 cross/x265 cross/opencore-amr cross/vo-amrwbenc
8+
DEPENDS = cross/fdk-aac cross/flac cross/freetype cross/lame cross/libass
9+
DEPENDS += cross/libbluray cross/libtheora cross/libvorbis cross/libvpx
10+
DEPENDS += cross/opencore-amr cross/openjpeg cross/openssl cross/opus cross/rtmpdump
11+
DEPENDS += cross/soxr cross/speex cross/vo-amrwbenc cross/x264 cross/x265
1112

1213
HOMEPAGE = http://www.ffmpeg.org/
1314
COMMENT = FFmpeg is a complete, cross-platform solution to record, convert and stream audio and video. It includes libavcodec - the leading audio/video codec library
1415
LICENSE = LGPL 2.1
1516

16-
CONFIGURE_ARGS = --target-os=linux --cross-prefix=$(TC_PATH)$(TC_PREFIX) --prefix=$(INSTALL_PREFIX) --extra-cflags="-I$(WORK_DIR)/install$(INSTALL_PREFIX)/include"
17-
CONFIGURE_ARGS += --extra-ldflags="-L$(WORK_DIR)/install$(INSTALL_PREFIX)/lib" --extra-libs="-lxml2 -ldl" --pkg-config=/usr/bin/pkg-config --ranlib=$(RANLIB)
18-
CONFIGURE_ARGS += --enable-optimizations --enable-gpl --enable-version3 --enable-nonfree --enable-cross-compile --enable-rpath --enable-pic --enable-pthreads
19-
CONFIGURE_ARGS += --enable-libsoxr
20-
CONFIGURE_ARGS += --enable-libx264 --enable-libx265 --enable-libmp3lame --enable-libfdk-aac --enable-libspeex --enable-openssl --enable-libvorbis
21-
CONFIGURE_ARGS += --enable-gpl --enable-nonfree --enable-fontconfig --enable-libfreetype
22-
CONFIGURE_ARGS += --enable-libass --enable-libbluray --enable-libopenjpeg --enable-libopus --enable-libtheora --enable-librtmp
23-
CONFIGURE_ARGS += --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libvo-amrwbenc
24-
CONFIGURE_ARGS += --enable-libvpx --disable-static --enable-shared --enable-pic
25-
CONFIGURE_ARGS += --disable-doc --disable-htmlpages --disable-manpages --disable-podpages --disable-txtpages --disable-debug
17+
CONFIGURE_ARGS = --target-os=linux --cross-prefix=$(TC_PATH)$(TC_PREFIX) --prefix=$(INSTALL_PREFIX)
18+
CONFIGURE_ARGS += --extra-cflags="-I$(WORK_DIR)/install$(INSTALL_PREFIX)/include"
19+
CONFIGURE_ARGS += --extra-ldflags="-L$(WORK_DIR)/install$(INSTALL_PREFIX)/lib"
20+
CONFIGURE_ARGS += --extra-libs="-lxml2 -ldl" --pkg-config=/usr/bin/pkg-config --ranlib=$(RANLIB)
21+
CONFIGURE_ARGS += --enable-cross-compile --enable-rpath --enable-pic
22+
CONFIGURE_ARGS += --enable-shared --enable-optimizations --enable-pthreads
23+
CONFIGURE_ARGS += --enable-gpl --enable-version3 --enable-nonfree
24+
CONFIGURE_ARGS += --enable-fontconfig --enable-libass --enable-libbluray
25+
CONFIGURE_ARGS += --enable-libfdk-aac --enable-libfreetype --enable-libmp3lame
26+
CONFIGURE_ARGS += --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg
27+
CONFIGURE_ARGS += --enable-libopus --enable-librtmp --enable-libsoxr --enable-libspeex
28+
CONFIGURE_ARGS += --enable-libtheora --enable-libvo-amrwbenc --enable-libvorbis
29+
CONFIGURE_ARGS += --enable-libvpx --enable-libx264 --enable-libx265 --enable-openssl
30+
CONFIGURE_ARGS += --disable-debug --disable-doc --disable-htmlpages --disable-manpages
31+
CONFIGURE_ARGS += --disable-podpages --disable-static --disable-txtpages
2632

2733
include ../../mk/spksrc.cross-cc.mk
2834

35+
YASM_PATH=$(WORK_DIR)/../../../native/yasm/work-native/install/usr/local/bin/
36+
2937
ifeq ($(findstring $(ARCH),$(ARM5_ARCHES)),$(ARCH))
3038
CONFIGURE_ARGS += --arch=arm --disable-neon --disable-yasm --disable-asm
3139
endif
@@ -35,19 +43,20 @@ CONFIGURE_ARGS += --arch=arm --disable-neon --disable-armv6 --disable-armv6t2 --
3543
endif
3644

3745
ifeq ($(findstring $(ARCH),$(x86_ARCHES)),$(ARCH))
38-
CONFIGURE_ARGS += --arch=i386 --enable-thumb
3946
DEPENDS += native/yasm
40-
ENV += PATH=$(WORK_DIR)/../../../native/yasm/work-native/install/usr/local/bin/:$$PATH
47+
ENV += PATH=$(YASM_PATH):$$PATH
48+
CONFIGURE_ARGS += --arch=i386 --enable-thumb
4149
endif
4250

4351
ifeq ($(findstring $(ARCH),$(x64_ARCHES)),$(ARCH))
44-
CONFIGURE_ARGS += --arch=x86_64 --enable-thumb
4552
DEPENDS += native/yasm
46-
ENV += PATH=$(WORK_DIR)/../../../native/yasm/work-native/install/usr/local/bin/:$$PATH
53+
ENV += PATH=$(YASM_PATH):$$PATH
54+
CONFIGURE_ARGS += --arch=x86_64 --enable-thumb
4755
endif
4856

4957
ifeq ($(findstring $(ARCH),$(PPC_ARCHES)),$(ARCH))
50-
CONFIGURE_ARGS += --arch=ppc
5158
DEPENDS += native/yasm
52-
ENV += PATH=$(WORK_DIR)/../../../native/yasm/work-native/install/usr/local/bin/:$$PATH
59+
ENV += PATH=$(YASM_PATH):$$PATH
60+
CONFIGURE_ARGS += --arch=ppc
5361
endif
62+

cross/flac/Makefile

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,6 @@ CONFIGURE_ARGS = --disable-thorough-tests --disable-doxygen-docs --disable-oggte
1717
include ../../mk/spksrc.cross-cc.mk
1818

1919
ifeq ($(findstring $(ARCH),$(PPC_ARCHES)),$(ARCH))
20-
CONFIGURE_ARGS += --disable-altivec
20+
CONFIGURE_ARGS += --disable-altivec
2121
endif
22+

cross/fontconfig/Makefile

+3-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,11 @@ DEPENDS = cross/expat cross/freetype
99

1010
HOMEPAGE = http://www.freedesktop.org/wiki/Software/fontconfig/
1111
COMMENT = Fontconfig is a library for configuring and customizing font access.
12-
LICENSE =
12+
LICENSE = GPLv2
1313

1414
GNU_CONFIGURE = 1
1515

16-
CONFIGURE_ARGS = --enable-static --disable-docs --enable-iconv
16+
CONFIGURE_ARGS = --disable-docs --enable-iconv
1717

1818
include ../../mk/spksrc.cross-cc.mk
19+

cross/fribidi/Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ DEPENDS =
99

1010
HOMEPAGE = http://fribidi.org/
1111
COMMENT = GNU FriBidi is an implementation of the Unicode Bidirectional Algorithm (bidi).
12-
LICENSE =
12+
LICENSE = GPLv2
1313

1414
GNU_CONFIGURE = 1
1515

16-
CONFIGURE_ARGS = --enable-static --with-pic
16+
CONFIGURE_ARGS = --with-pic
1717

1818
include ../../mk/spksrc.cross-cc.mk

cross/libass/Makefile

+2-4
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,9 @@ DEPENDS = cross/freetype cross/fribidi cross/fontconfig
99

1010
HOMEPAGE = https://github.com/libass/libass
1111
COMMENT = libass is a portable subtitle renderer for the ASS/SSA (Advanced Substation Alpha/Substation Alpha) subtitle format.
12-
LICENSE =
12+
LICENSE = ICS
1313

1414
GNU_CONFIGURE = 1
1515

16-
#CONFIGURE_ARGS += --disable-fontconfig
17-
CONFIGURE_ARGS +=
18-
1916
include ../../mk/spksrc.cross-cc.mk
17+

cross/libnuma/Makefile

+3-8
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,14 @@ PKG_EXT = tar.gz
44
PKG_DIST_NAME = numactl-$(PKG_VERS).$(PKG_EXT)
55
PKG_DIST_SITE = ftp://oss.sgi.com/www/projects/libnuma/download
66
PKG_DIR = numactl-$(PKG_VERS)
7+
78
DEPENDS =
89

910
HOMEPAGE = http://oss.sgi.com/projects/libnuma/
10-
COMMENT = NUMA stands for Non-Uniform Memory Access,
11+
COMMENT = NUMA stands for Non-Uniform Memory Access.
1112
LICENSE = GPLv2
1213

13-
CONFIGURE_TARGET = myConf
14-
15-
GNU_CONFIGURE = 0
14+
CONFIGURE_TARGET = nop
1615

1716
include ../../mk/spksrc.cross-cc.mk
1817

19-
20-
myConf:
21-
echo "No-configure"
22-

cross/libnuma/PLIST

-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
11
bin:bin/numactl
2-
lib:lib/libnuma.a
32
lnk:lib/libnuma.so
43
lib:lib/libnuma.so.1
5-
rsc:include/numa.h
6-
rsc:include/numaid.h
7-
rsc:include/numacompat1.h
+10-9
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
1-
--- getlibdir 2013-10-08 23:34:57.000000000 +0200
2-
+++ getlibdir.n 2016-05-10 16:58:29.455979019 +0200
3-
@@ -1,7 +1,7 @@
1+
--- getlibdir.orig 2016-06-01 14:14:30.444118300 +0200
2+
+++ getlibdir 2016-06-01 14:14:45.204468769 +0200
3+
@@ -1,9 +1,2 @@
44
#!/bin/sh
5-
case `uname -m` in
5+
-case `uname -m` in
66
-s390x|x86_64|ppc64)
77
- echo -n lib64
8-
+s390x|x86_64|ppc64)
9-
+ echo -n lib
10-
;;
11-
*)
12-
echo -n lib
8+
- ;;
9+
-*)
10+
- echo -n lib
11+
- ;;
12+
-esac
13+
+echo -n lib

cross/libtheora/digests

-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
11
libtheora-1.1.1.tar.bz2 SHA1 8dcaa8e61cd86eb1244467c0b64b9ddac04ae262
22
libtheora-1.1.1.tar.bz2 SHA256 b6ae1ee2fa3d42ac489287d3ec34c5885730b1296f0801ae577a35193d3affbc
33
libtheora-1.1.1.tar.bz2 MD5 292ab65cedd5021d6b7ddd117e07cd8e
4-
libtheora-1.1.1.tar.bz2 SHA1 8dcaa8e61cd86eb1244467c0b64b9ddac04ae262
5-
libtheora-1.1.1.tar.bz2 SHA256 b6ae1ee2fa3d42ac489287d3ec34c5885730b1296f0801ae577a35193d3affbc
6-
libtheora-1.1.1.tar.bz2 MD5 292ab65cedd5021d6b7ddd117e07cd8e

cross/libvpx/Makefile

+9-5
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,14 @@ PKG_VERS = 1.5.0
33
PKG_EXT = tar.gz
44
PKG_DIST_NAME = v$(PKG_VERS).$(PKG_EXT)
55
PKG_DIST_SITE = https://github.com/webmproject/libvpx/archive
6+
PKG_DIST_FILE = $(PKG_NAME)-$(PKG_VERS).$(PKG_EXT)
67
PKG_DIR = $(PKG_NAME)-$(PKG_VERS)
78

89
DEPENDS =
910

1011
HOMEPAGE = http://www.webmproject.org/code/
11-
COMMENT =
12+
COMMENT = WebM VP8/VP9 Codec
13+
LICENSE = https://raw.githubusercontent.com/webmproject/libvpx/master/LICENSE
1214

1315
CONFIGURE_ARGS = --disable-sse --disable-sse2 --disable-sse3 --disable-ssse3 --disable-sse4_1 --enable-shared
1416
CONFIGURE_ARGS += --enable-vp8 --enable-vp9 --disable-examples --disable-docs --disable-unit_tests
@@ -17,6 +19,7 @@ CONFIGURE_ARGS += --enable-postproc --enable-vp9-postproc --enable-pic --prefix
1719
include ../../mk/spksrc.cross-cc.mk
1820

1921
ENV = LD= CPP= NM= CC= RANLIB= CXX= AR= STRIP= OBJDUM= CFLAGS="$(CFLAGS)" CPPFLAGS= LDFLAGS="$(LDFLAGS)" CXXFLAGS= READELF= AS= OBJDUMP= DESTDIR=$(INSTALL_DIR) CROSS=$(TC_PATH)$(TC_PREFIX)
22+
YASM_PATH=$(WORK_DIR)/../../../native/yasm/work-native/install/usr/local/bin/
2023

2124
ifeq ($(findstring $(ARCH),$(ARM5_ARCHES)),$(ARCH))
2225
CONFIGURE_ARGS += --target=generic-gnu
@@ -28,18 +31,19 @@ endif
2831

2932
ifeq ($(findstring $(ARCH),$(x86_ARCHES)),$(ARCH))
3033
DEPENDS += native/yasm
31-
ENV += PATH=$(WORK_DIR)/../../../native/yasm/work-native/install/usr/local/bin/:$$PATH
34+
ENV += PATH=$(YASM_PATH):$$PATH
3235
CONFIGURE_ARGS += --target=x86-linux-gcc
3336
endif
3437

3538
ifeq ($(findstring $(ARCH),$(x64_ARCHES)),$(ARCH))
3639
DEPENDS += native/yasm
37-
ENV += PATH=$(WORK_DIR)/../../../native/yasm/work-native/install/usr/local/bin/:$$PATH
40+
ENV += PATH=$(YASM_PATH):$$PATH
3841
CONFIGURE_ARGS += --target=x86_64-linux-gcc
3942
endif
4043

4144
ifeq ($(findstring $(ARCH),$(PPC_ARCHES)),$(ARCH))
4245
DEPENDS += native/yasm
43-
ENV += PATH=$(WORK_DIR)/../../../native/yasm/work-native/install/usr/local/bin/:$$PATH
44-
CONFIGURE_ARGS += --target=generic-gnu --as=yasm
46+
ENV += PATH=$(YASM_PATH):$$PATH
47+
CONFIGURE_ARGS += --target=generic-gnu
4548
endif
49+

cross/opencore-amr/Makefile

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
PKG_NAME = opencore-amr
2-
PKG_EXT = tar.gz
32
PKG_VERS = 0.1.3
43
PKG_EXT = tar.gz
54
PKG_DIST_NAME = $(PKG_NAME)-$(PKG_VERS).$(PKG_EXT)
6-
PKG_DIST_SITE = https://sourceforge.net/projects/opencore-amr/files/opencore-amr
7-
PKG_DIR = $(PKG_NAME)-$(PKG_VERS)/
5+
PKG_DIST_SITE = https://sourceforge.net/projects/opencore-amr/files/$(PKG_NAME)
6+
PKG_DIR = $(PKG_NAME)-$(PKG_VERS)
87

98

109
DEPENDS =
@@ -15,12 +14,12 @@ LICENSE = Apache 2
1514

1615
GNU_CONFIGURE = 1
1716

18-
PRE_CONFIGURE_TARGET = myPreConfigure
19-
2017
ifeq ($(findstring $(ARCH), $(ARM5_ARCHES)),$(ARCH))
2118
CONFIGURE_ARGS += --enable-gcc-armv5
2219
endif
2320

21+
PRE_CONFIGURE_TARGET = myPreConfigure
22+
2423
include ../../mk/spksrc.cross-cc.mk
2524

2625
.PHONY: myPreConfigure

cross/opencore-amr/PLIST

-10
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,6 @@
1-
lib:lib/libopencore-amrnb.a
2-
lib:lib/libopencore-amrwb.la
31
lnk:lib/libopencore-amrnb.so
42
lnk:lib/libopencore-amrnb.so.0
53
lib:lib/libopencore-amrnb.so.0.0.3
6-
lib:lib/libopencore-amrnb.la
74
lnk:lib/libopencore-amrwb.so
85
lnk:lib/libopencore-amrwb.so.0
96
lib:lib/libopencore-amrwb.so.0.0.3
10-
lib:lib/libopencore-amrwb.a
11-
rsc:include/opencore-amrnb/interf_enc.h
12-
rsc:include/opencore-amrnb/interf_dec.h
13-
rsc:include/opencore-amrwb/dec_if.h
14-
rsc:include/opencore-amrwb/if_rom.h
15-
rsc:lib/pkgconfig/opencore-amrwb.pc
16-
rsc:lib/pkgconfig/opencore-amrnb.pc

cross/openjpeg/Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ HOMEPAGE = http://www.openjpeg.org/
1111
COMMENT = The OpenJPEG library is an open-source JPEG 2000 codec written in C language.
1212
LICENSE = BSD
1313

14-
CONFIGURE_TARGET = myConf
14+
CONFIGURE_TARGET = myConfigure
1515

1616
include ../../mk/spksrc.cross-cc.mk
1717

18-
myConf:
18+
myConfigure:
1919
$(RUN) cmake -DCMAKE_INSTALL_PREFIX=$(STAGING_INSTALL_PREFIX) .
2020

cross/libopus/Makefile cross/opus/Makefile

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
PKG_NAME = libopus
1+
PKG_NAME = opus
22
PKG_VERS = 1.1.2
33
PKG_EXT = tar.gz
44
PKG_DIST_NAME = opus-$(PKG_VERS).$(PKG_EXT)
@@ -16,3 +16,4 @@ GNU_CONFIGURE = 1
1616
CONFIGURE_ARGS = --disable-doc --disable-extra-programs
1717

1818
include ../../mk/spksrc.cross-cc.mk
19+
File renamed without changes.
File renamed without changes.

cross/rtmpdump/Makefile

+2-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,5 @@ COMPILE_TARGET = myCompile
1818
include ../../mk/spksrc.cross-cc.mk
1919

2020
myCompile:
21-
$(RUN) make SYS=posix prefix=$(INSTALL_PREFIX) CROSS_COMPILE=$(TC_PATH)$(TC_PREFIX) INC=-I$(STAGING_INSTALL_PREFIX) LDFLAGS=" $(LDFLAGS)"
21+
$(RUN) $(MAKE) SYS=posix prefix=$(INSTALL_PREFIX) CROSS_COMPILE=$(TC_PATH)$(TC_PREFIX) INC=-I$(STAGING_INSTALL_PREFIX) LDFLAGS=" $(LDFLAGS)"
22+

cross/rtmpdump/PLIST

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
bin:bin/rtmpdump
2-
lnk:lib/librtmp.so
3-
lib:lib/librtmp.so.1
42
bin:sbin/rtmpgw
53
bin:sbin/rtmpsrv
64
bin:sbin/rtmpsuck
5+
lnk:lib/librtmp.so
6+
lib:lib/librtmp.so.1

cross/rtmpdump/digests

-3
This file was deleted.

cross/libsoxr/Makefile cross/soxr/Makefile

+10-11
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,19 @@ HOMEPAGE = https://sourceforge.net/projects/soxr/
1010
COMMENT = The SoX Resampler library 'libsoxr' performs one-dimensional sample-rate conversion—it may be used, for example, to resample PCM-encoded audio.
1111
LICENSE = GPL & LGPL
1212

13-
CONFIGURE_TARGET = myConf
13+
CONFIGURE_TARGET = myConfigure
1414

15-
include ../../mk/spksrc.cross-cc.mk
16-
17-
18-
CMAKE=cmake \
19-
-DCMAKE_INSTALL_PREFIX=$(STAGING_INSTALL_PREFIX) \
20-
-DEXTRA_LINK_FLAGS="-ldl" \
21-
-DBUILD_TESTS=OFF \
15+
CMAKE_ARGS = -DCMAKE_INSTALL_PREFIX=$(STAGING_INSTALL_PREFIX)
16+
CMAKE_ARGS += -DEXTRA_LINK_FLAGS="-ldl"
17+
CMAKE_ARGS += -DBUILD_TESTS=OFF
2218

2319
ifeq ($(findstring $(ARCH), $(PPC_ARCHES)),$(ARCH))
24-
CMAKE += -DVISIBILITY_HIDDEN=OFF
20+
CMAKE_ARGS += -DVISIBILITY_HIDDEN=OFF
2521
endif
2622

27-
myConf:
28-
$(RUN) $(CMAKE) .
23+
include ../../mk/spksrc.cross-cc.mk
24+
25+
.PHONY: myConfigure
26+
myConfigure:
27+
$(RUN) cmake $(CMAKE_ARGS)
2928

cross/libsoxr/PLIST cross/soxr/PLIST

-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,5 @@ lib:lib/libsoxr-lsr.so.0.1.9
44
lnk:lib/libsoxr.so
55
lnk:lib/libsoxr.so.0
66
lib:lib/libsoxr.so.0.1.1
7-
rsc:lib/pkgconfig/soxr-lsr.pc
8-
rsc:lib/pkgconfig/soxr.pc
97
rsc:include/soxr.h
108
rsc:include/soxr-lsr.h
File renamed without changes.

cross/speex/digests

-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
11
speex-1.2rc2.tar.gz SHA1 03ce8418c4e05cb166374bfadef46e7646da62e1
22
speex-1.2rc2.tar.gz SHA256 caa27c7247ff15c8521c2ae0ea21987c9e9710a8f2d3448e8b79da9806bce891
33
speex-1.2rc2.tar.gz MD5 6ae7db3bab01e1d4b86bacfa8ca33e81
4-
speex-1.2rc2.tar.gz SHA1 03ce8418c4e05cb166374bfadef46e7646da62e1
5-
speex-1.2rc2.tar.gz SHA256 caa27c7247ff15c8521c2ae0ea21987c9e9710a8f2d3448e8b79da9806bce891
6-
speex-1.2rc2.tar.gz MD5 6ae7db3bab01e1d4b86bacfa8ca33e81

cross/vo-amrwbenc/Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
PKG_NAME = vo-amrwbenc
2-
PKG_EXT = tar.gz
32
PKG_VERS = 0.1.3
43
PKG_EXT = tar.gz
54
PKG_DIST_NAME = $(PKG_NAME)-$(PKG_VERS).$(PKG_EXT)
6-
PKG_DIST_SITE = https://sourceforge.net/projects/opencore-amr/files/vo-amrwbenc
7-
PKG_DIR = $(PKG_NAME)-$(PKG_VERS)/
5+
PKG_DIST_SITE = https://sourceforge.net/projects/opencore-amr/files/$(PKG_NAME)
6+
PKG_DIR = $(PKG_NAME)-$(PKG_VERS)
87

98
DEPENDS =
109

@@ -29,3 +28,4 @@ include ../../mk/spksrc.cross-cc.mk
2928
.PHONY: myPreConfigure
3029
myPreConfigure:
3130
$(RUN) autoreconf -i -f
31+

cross/vo-amrwbenc/PLIST

-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
11
lnk:lib/libvo-amrwbenc.so
22
lnk:lib/libvo-amrwbenc.so.0
33
lib:lib/libvo-amrwbenc.so.0.0.4
4-
lib:lib/libvo-amrwbenc.a
5-
lib:lib/libvo-amrwbenc.la
6-
rsc:include/vo-amrwbenc/enc_if.h
7-
rsc:lib/pkgconfig/vo-amrwbenc.pc

0 commit comments

Comments
 (0)