Merge pull request #2258 from CvH/9.0-dstat

addon compiling fixes
This commit is contained in:
Christian Hewitt 2017-11-25 19:45:56 +04:00 committed by GitHub
commit 1f950bfe65
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 12 deletions

View File

@ -27,15 +27,8 @@ PKG_DEPENDS_TARGET="toolchain Python2"
PKG_SECTION="tools" PKG_SECTION="tools"
PKG_SHORTDESC="Versatile resource statistics tool" PKG_SHORTDESC="Versatile resource statistics tool"
PKG_LONGDESC="Versatile resource statistics tool" PKG_LONGDESC="Versatile resource statistics tool"
PKG_TOOLCHAIN="manual"
post_unpack() { post_unpack() {
rm $PKG_BUILD/Makefile rm $PKG_BUILD/Makefile
} }
make_target() {
: # nothing to do
}
makeinstall_target() {
: # nothing to do
}

View File

@ -28,6 +28,7 @@ PKG_DEPENDS_TARGET="toolchain"
PKG_SECTION="tools" PKG_SECTION="tools"
PKG_SHORTDESC="unrar: Extract, test and view RAR archives" PKG_SHORTDESC="unrar: Extract, test and view RAR archives"
PKG_LONGDESC="Unrar is a package to handle files compressed in the RAR format. Due to strange licensing issues this package can only view, test and extract files in a given archive, but not pack files. But since we have far more advanced open-source compression utils it should be enough to extract the content when you get a RAR archive." PKG_LONGDESC="Unrar is a package to handle files compressed in the RAR format. Due to strange licensing issues this package can only view, test and extract files in a given archive, but not pack files. But since we have far more advanced open-source compression utils it should be enough to extract the content when you get a RAR archive."
PKG_TOOLCHAIN="manual"
make_target() { make_target() {
make CXX="$CXX" \ make CXX="$CXX" \
@ -37,7 +38,3 @@ make_target() {
STRIP="$STRIP" \ STRIP="$STRIP" \
-f makefile -f makefile
} }
makeinstall_target() {
: # nop
}