diff options
author | Tony Theodore <tonyt@logyst.com> | 2015-10-15 10:12:17 (GMT) |
---|---|---|
committer | Tony Theodore <tonyt@logyst.com> | 2015-11-26 05:48:53 (GMT) |
commit | a6ba06c5260d26e805d9fdf54c587636bb861d4a (patch) | |
tree | fd2ab9aaba1aa8b0337f543a505af28d40925b24 /plugins/native | |
parent | d6c4884455cec15d24fbdb5a07dd2ea68978bc14 (diff) | |
download | mxe-a6ba06c5260d26e805d9fdf54c587636bb861d4a.zip mxe-a6ba06c5260d26e805d9fdf54c587636bb861d4a.tar.gz mxe-a6ba06c5260d26e805d9fdf54c587636bb861d4a.tar.bz2 |
add native and apps plugin packages
Diffstat (limited to 'plugins/native')
-rw-r--r-- | plugins/native/autoconf.mk | 31 | ||||
-rw-r--r-- | plugins/native/automake.mk | 31 | ||||
-rw-r--r-- | plugins/native/bison.mk | 31 | ||||
-rw-r--r-- | plugins/native/coreutils.mk | 32 | ||||
-rw-r--r-- | plugins/native/flex.mk | 31 | ||||
-rw-r--r-- | plugins/native/gettext.mk | 14 | ||||
-rw-r--r-- | plugins/native/gperf.mk | 31 | ||||
-rw-r--r-- | plugins/native/intltool.mk | 30 | ||||
-rw-r--r-- | plugins/native/libiconv.mk | 14 | ||||
-rw-r--r-- | plugins/native/libtool.mk | 14 | ||||
-rw-r--r-- | plugins/native/m4.mk | 33 | ||||
-rw-r--r-- | plugins/native/make.mk | 32 | ||||
-rw-r--r-- | plugins/native/sed.mk | 32 |
13 files changed, 356 insertions, 0 deletions
diff --git a/plugins/native/autoconf.mk b/plugins/native/autoconf.mk new file mode 100644 index 0000000..7ef4b79 --- /dev/null +++ b/plugins/native/autoconf.mk @@ -0,0 +1,31 @@ +# This file is part of MXE. +# See index.html for further information. + +PKG := autoconf +$(PKG)_IGNORE := +$(PKG)_VERSION := 2.69 +$(PKG)_CHECKSUM := 64ebcec9f8ac5b2487125a86a7760d2591ac9e1d3dbd59489633f9de62a57684 +$(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION) +$(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.xz +$(PKG)_URL := http://ftp.gnu.org/pub/gnu/autoconf/$($(PKG)_FILE) +$(PKG)_URL_2 := ftp://ftp.gnu.org/pub/gnu/autoconf/$($(PKG)_FILE) +$(PKG)_WEBSITE := http://www.gnu.org/software/autoconf +$(PKG)_MAKEFILE := $(realpath $(lastword $(MAKEFILE_LIST))) +$(PKG)_OWNER := https://github.com/tonytheodore +$(PKG)_TARGETS := $(BUILD) +$(PKG)_DEPS := m4 + +define $(PKG)_UPDATE + $(WGET) -q -O- 'http://ftp.gnu.org/gnu/autoconf/?C=M;O=D' | \ + $(SED) -n 's,.*<a href="autoconf-\([0-9][^"]*\)\.tar.*,\1,p' | \ + $(SORT) -V | \ + tail -1 +endef + +define $(PKG)_BUILD_$(BUILD) + mkdir '$(1).build' + cd '$(1).build' && '$(1)/configure' \ + --prefix='$(PREFIX)/$(TARGET)' + $(MAKE) -C '$(1).build' -j '$(JOBS)' + $(MAKE) -C '$(1).build' -j 1 install +endef diff --git a/plugins/native/automake.mk b/plugins/native/automake.mk new file mode 100644 index 0000000..58ea842 --- /dev/null +++ b/plugins/native/automake.mk @@ -0,0 +1,31 @@ +# This file is part of MXE. +# See index.html for further information. + +PKG := automake +$(PKG)_IGNORE := +$(PKG)_VERSION := 1.15 +$(PKG)_CHECKSUM := 7946e945a96e28152ba5a6beb0625ca715c6e32ac55f2e353ef54def0c8ed924 +$(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION) +$(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.gz +$(PKG)_URL := http://ftp.gnu.org/pub/gnu/automake/$($(PKG)_FILE) +$(PKG)_URL_2 := ftp://ftp.gnu.org/pub/gnu/automake/$($(PKG)_FILE) +$(PKG)_WEBSITE := http://www.gnu.org/software/automake +$(PKG)_MAKEFILE := $(realpath $(lastword $(MAKEFILE_LIST))) +$(PKG)_OWNER := https://github.com/tonytheodore +$(PKG)_TARGETS := $(BUILD) +$(PKG)_DEPS := autoconf + +define $(PKG)_UPDATE + $(WGET) -q -O- 'http://ftp.gnu.org/gnu/automake/?C=M;O=D' | \ + $(SED) -n 's,.*<a href="automake-\([0-9][^"]*\)\.tar.*,\1,p' | \ + $(SORT) -V | \ + tail -1 +endef + +define $(PKG)_BUILD_$(BUILD) + mkdir '$(1).build' + cd '$(1).build' && '$(1)/configure' \ + --prefix='$(PREFIX)/$(TARGET)' + $(MAKE) -C '$(1).build' -j '$(JOBS)' man1_MANS= + $(MAKE) -C '$(1).build' -j 1 install man1_MANS= +endef diff --git a/plugins/native/bison.mk b/plugins/native/bison.mk new file mode 100644 index 0000000..c637055 --- /dev/null +++ b/plugins/native/bison.mk @@ -0,0 +1,31 @@ +# This file is part of MXE. +# See index.html for further information. + +PKG := bison +$(PKG)_IGNORE := 3% +$(PKG)_VERSION := 2.7.1 +$(PKG)_CHECKSUM := b409adcbf245baadb68d2f66accf6fdca5e282cafec1b865f4b5e963ba8ea7fb +$(PKG)_SUBDIR := bison-$($(PKG)_VERSION) +$(PKG)_FILE := bison-$($(PKG)_VERSION).tar.xz +$(PKG)_URL := http://ftp.gnu.org/pub/gnu/bison/$($(PKG)_FILE) +$(PKG)_URL_2 := ftp://ftp.gnu.org/pub/gnu/bison/$($(PKG)_FILE) +$(PKG)_WEBSITE := http://www.gnu.org/software/bison +$(PKG)_MAKEFILE := $(realpath $(lastword $(MAKEFILE_LIST))) +$(PKG)_OWNER := https://github.com/tonytheodore +$(PKG)_TARGETS := $(BUILD) +$(PKG)_DEPS := flex + +define $(PKG)_UPDATE + $(WGET) -q -O- 'http://ftp.gnu.org/gnu/bison/?C=M;O=D' | \ + $(SED) -n 's,.*<a href="bison-\([0-9][^"]*\)\.tar.*,\1,p' | \ + $(SORT) -V | \ + tail -1 +endef + +define $(PKG)_BUILD_$(BUILD) + mkdir '$(1).build' + cd '$(1).build' && '$(1)/configure' \ + --prefix='$(PREFIX)/$(TARGET)' + $(MAKE) -C '$(1).build' -j '$(JOBS)' + $(MAKE) -C '$(1).build' -j 1 install +endef diff --git a/plugins/native/coreutils.mk b/plugins/native/coreutils.mk new file mode 100644 index 0000000..d62fccc --- /dev/null +++ b/plugins/native/coreutils.mk @@ -0,0 +1,32 @@ +# This file is part of MXE. +# See index.html for further information. + +PKG := coreutils +$(PKG)_IGNORE := +$(PKG)_VERSION := 8.23 +$(PKG)_CHECKSUM := ec43ca5bcfc62242accb46b7f121f6b684ee21ecd7d075059bf650ff9e37b82d +$(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION) +$(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.xz +$(PKG)_URL := http://ftp.gnu.org/pub/gnu/$(PKG)/$($(PKG)_FILE) +$(PKG)_URL_2 := ftp://ftp.gnu.org/pub/gnu/$(PKG)/$($(PKG)_FILE) +$(PKG)_WEBSITE := https://www.gnu.org/software/coreutils +$(PKG)_MAKEFILE := $(realpath $(lastword $(MAKEFILE_LIST))) +$(PKG)_OWNER := https://github.com/tonytheodore +$(PKG)_TARGETS := $(BUILD) + +$(PKG)_DEPS_$(BUILD) := gettext gmp libiconv libtool + +define $(PKG)_UPDATE + $(WGET) -q -O- 'http://ftp.gnu.org/gnu/coreutils/?C=M;O=D' | \ + $(SED) -n 's,.*<a href="coreutils-\([0-9][^"]*\)\.tar.*,\1,p' | \ + $(SORT) -V | \ + tail -1 +endef + +define $(PKG)_BUILD_$(BUILD) + mkdir '$(1).build' + cd '$(1).build' && '$(1)/configure' \ + --prefix='$(PREFIX)/$(TARGET)' + $(MAKE) -C '$(1).build' -j '$(JOBS)' man1_MANS= + $(MAKE) -C '$(1).build' -j 1 install man1_MANS= +endef diff --git a/plugins/native/flex.mk b/plugins/native/flex.mk new file mode 100644 index 0000000..0d92373 --- /dev/null +++ b/plugins/native/flex.mk @@ -0,0 +1,31 @@ +# This file is part of MXE. +# See index.html for further information. + +PKG := flex +$(PKG)_IGNORE := +$(PKG)_VERSION := 2.5.39 +$(PKG)_CHECKSUM := add2b55f3bc38cb512b48fad7d72f43b11ef244487ff25fc00aabec1e32b617f +$(PKG)_SUBDIR := flex-$($(PKG)_VERSION) +$(PKG)_FILE := flex-$($(PKG)_VERSION).tar.bz2 +$(PKG)_URL := http://$(SOURCEFORGE_MIRROR)/project/flex/$($(PKG)_FILE) +$(PKG)_WEBSITE := http://flex.sourceforge.net +$(PKG)_MAKEFILE := $(realpath $(lastword $(MAKEFILE_LIST))) +$(PKG)_OWNER := https://github.com/tonytheodore +$(PKG)_TARGETS := $(BUILD) +$(PKG)_DEPS := + +define $(PKG)_UPDATE + $(WGET) -q -O- 'http://sourceforge.net/projects/flex/files/' | \ + grep -i 'flex/files/' | \ + $(SED) -n 's,.*/flex-\([0-9\.]*\)\.tar.*/.*,\1,p' | \ + head -1 +endef + +define $(PKG)_BUILD_$(BUILD) + mkdir '$(1).build' + cd '$(1).build' && '$(1)/configure' \ + --prefix='$(PREFIX)/$(TARGET)' \ + --disable-shared + $(MAKE) -C '$(1).build' -j '$(JOBS)' + $(MAKE) -C '$(1).build' -j 1 install +endef diff --git a/plugins/native/gettext.mk b/plugins/native/gettext.mk new file mode 100644 index 0000000..4c4c268 --- /dev/null +++ b/plugins/native/gettext.mk @@ -0,0 +1,14 @@ +# This file is part of MXE. +# See index.html for further information. + +PKG := gettext +$(PKG)_TARGETS += $(BUILD) +$(PKG)_DEPS_$(BUILD) := libiconv + +define $(PKG)_BUILD_$(BUILD) + mkdir '$(1).build' + cd '$(1).build' && '$(1)/configure' \ + --prefix='$(PREFIX)/$(TARGET)' + $(MAKE) -C '$(1).build' -j '$(JOBS)' man1_MANS= + $(MAKE) -C '$(1).build' -j 1 install man1_MANS= +endef diff --git a/plugins/native/gperf.mk b/plugins/native/gperf.mk new file mode 100644 index 0000000..d796035 --- /dev/null +++ b/plugins/native/gperf.mk @@ -0,0 +1,31 @@ +# This file is part of MXE. +# See index.html for further information. + +PKG := gperf +$(PKG)_IGNORE := +$(PKG)_VERSION := 3.0.4 +$(PKG)_CHECKSUM := 767112a204407e62dbc3106647cf839ed544f3cf5d0f0523aaa2508623aad63e +$(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION) +$(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.gz +$(PKG)_URL := http://ftp.gnu.org/pub/gnu/$(PKG)/$($(PKG)_FILE) +$(PKG)_URL_2 := ftp://ftp.gnu.org/pub/gnu/$(PKG)/$($(PKG)_FILE) +$(PKG)_WEBSITE := https://www.gnu.org/software/gperf +$(PKG)_MAKEFILE := $(realpath $(lastword $(MAKEFILE_LIST))) +$(PKG)_OWNER := https://github.com/tonytheodore +$(PKG)_TARGETS := $(BUILD) +$(PKG)_DEPS := + +define $(PKG)_UPDATE + $(WGET) -q -O- 'http://ftp.gnu.org/gnu/gperf/?C=M;O=D' | \ + $(SED) -n 's,.*<a href="gperf-\([0-9][^"]*\)\.tar.*,\1,p' | \ + $(SORT) -V | \ + tail -1 +endef + +define $(PKG)_BUILD_$(BUILD) + mkdir '$(1).build' + cd '$(1).build' && '$(1)/configure' \ + --prefix='$(PREFIX)/$(TARGET)' + $(MAKE) -C '$(1).build' -j '$(JOBS)' + $(MAKE) -C '$(1).build' -j 1 install +endef diff --git a/plugins/native/intltool.mk b/plugins/native/intltool.mk new file mode 100644 index 0000000..6c2faff --- /dev/null +++ b/plugins/native/intltool.mk @@ -0,0 +1,30 @@ +# This file is part of MXE. +# See index.html for further information. + +PKG := intltool +$(PKG)_IGNORE := +$(PKG)_VERSION := 0.50.2 +$(PKG)_CHECKSUM := 67f25c5c6fb71d095793a7f895b245e65e829e8bde68c6c8b4c912144ff34406 +$(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION) +$(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.gz +$(PKG)_URL := https://launchpad.net/intltool/trunk/$($(PKG)_VERSION)/+download/$($(PKG)_FILE) +$(PKG)_WEBSITE := http://freedesktop.org/wiki/Software/intltool +$(PKG)_MAKEFILE := $(realpath $(lastword $(MAKEFILE_LIST))) +$(PKG)_OWNER := https://github.com/tonytheodore +$(PKG)_TARGETS := $(BUILD) +$(PKG)_DEPS := + +define $(PKG)_UPDATE + $(WGET) -q -O- 'https://launchpad.net/intltool/+download' | \ + $(SED) -n 's,.*https://launchpad.net/intltool/trunk/\([0-9][^"]*\)\/+download/intltool-\([0-9][^"]*\)\.tar.*,\1,p' | \ + $(SORT) -V | \ + tail -1 +endef + +define $(PKG)_BUILD_$(BUILD) + mkdir '$(1).build' + cd '$(1).build' && '$(1)/configure' \ + --prefix='$(PREFIX)/$(TARGET)' + $(MAKE) -C '$(1).build' -j '$(JOBS)' man1_MANS= + $(MAKE) -C '$(1).build' -j 1 install man1_MANS= +endef diff --git a/plugins/native/libiconv.mk b/plugins/native/libiconv.mk new file mode 100644 index 0000000..f9ed4b5 --- /dev/null +++ b/plugins/native/libiconv.mk @@ -0,0 +1,14 @@ +# This file is part of MXE. +# See index.html for further information. + +PKG := libiconv +$(PKG)_TARGETS += $(BUILD) +$(PKG)_DEPS_$(BUILD) := + +define $(PKG)_BUILD_$(BUILD) + mkdir '$(1).build' + cd '$(1).build' && '$(1)/configure' \ + --prefix='$(PREFIX)/$(TARGET)' + $(MAKE) -C '$(1).build' -j '$(JOBS)' man1_MANS= + $(MAKE) -C '$(1).build' -j 1 install man1_MANS= +endef diff --git a/plugins/native/libtool.mk b/plugins/native/libtool.mk new file mode 100644 index 0000000..aba7204 --- /dev/null +++ b/plugins/native/libtool.mk @@ -0,0 +1,14 @@ +# This file is part of MXE. +# See index.html for further information. + +PKG := libtool +$(PKG)_TARGETS += $(BUILD) +$(PKG)_DEPS_$(BUILD) := autoconf automake + +define $(PKG)_BUILD_$(BUILD) + mkdir '$(1).build' + cd '$(1).build' && '$(1)/configure' \ + --prefix='$(PREFIX)/$(TARGET)' + $(MAKE) -C '$(1).build' -j '$(JOBS)' + $(MAKE) -C '$(1).build' -j 1 install +endef diff --git a/plugins/native/m4.mk b/plugins/native/m4.mk new file mode 100644 index 0000000..eca4bed --- /dev/null +++ b/plugins/native/m4.mk @@ -0,0 +1,33 @@ +# This file is part of MXE. +# See index.html for further information. + +PKG := m4 +$(PKG)_IGNORE := +$(PKG)_VERSION := 1.4.17 +$(PKG)_CHECKSUM := f0543c3beb51fa6b3337d8025331591e0e18d8ec2886ed391f1aade43477d508 +$(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION) +$(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.xz +$(PKG)_URL := http://ftp.gnu.org/pub/gnu/m4/$($(PKG)_FILE) +$(PKG)_URL_2 := ftp://ftp.gnu.org/pub/gnu/m4/$($(PKG)_FILE) +$(PKG)_WEBSITE := http://www.gnu.org/software/m4 +$(PKG)_MAKEFILE := $(realpath $(lastword $(MAKEFILE_LIST))) +$(PKG)_OWNER := https://github.com/tonytheodore +$(PKG)_TARGETS := $(BUILD) +$(PKG)_DEPS := + +define $(PKG)_UPDATE + $(WGET) -q -O- 'http://ftp.gnu.org/gnu/m4/?C=M;O=D' | \ + $(SED) -n 's,.*<a href="m4-\([0-9][^"]*\)\.tar.*,\1,p' | \ + $(SORT) -V | \ + tail -1 +endef + +define $(PKG)_BUILD_$(BUILD) + # gets has been removed from recent glibc + $(SED) -i -e '/gets is a/d' '$(1)/lib/stdio.in.h' + mkdir '$(1).build' + cd '$(1).build' && '$(1)/configure' \ + --prefix='$(PREFIX)/$(TARGET)' + $(MAKE) -C '$(1).build' -j '$(JOBS)' + $(MAKE) -C '$(1).build' -j 1 install +endef diff --git a/plugins/native/make.mk b/plugins/native/make.mk new file mode 100644 index 0000000..b0ea9d2 --- /dev/null +++ b/plugins/native/make.mk @@ -0,0 +1,32 @@ +# This file is part of MXE. +# See index.html for further information. + +PKG := make +$(PKG)_IGNORE := +$(PKG)_VERSION := 4.1 +$(PKG)_CHECKSUM := 0bc7613389650ee6a24554b52572a272f7356164fd2c4132b0bcf13123e4fca5 +$(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION) +$(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.bz2 +$(PKG)_URL := http://ftp.gnu.org/pub/gnu/$(PKG)/$($(PKG)_FILE) +$(PKG)_URL_2 := ftp://ftp.gnu.org/pub/gnu/$(PKG)/$($(PKG)_FILE) +$(PKG)_WEBSITE := http://www.gnu.org/software/make +$(PKG)_MAKEFILE := $(realpath $(lastword $(MAKEFILE_LIST))) +$(PKG)_OWNER := https://github.com/tonytheodore +$(PKG)_TARGETS := $(BUILD) + +$(PKG)_DEPS_$(BUILD) := gettext + +define $(PKG)_UPDATE + $(WGET) -q -O- 'http://ftp.gnu.org/gnu/make/?C=M;O=D' | \ + $(SED) -n 's,.*<a href="make-\([0-9][^"]*\)\.tar.*,\1,p' | \ + $(SORT) -V | \ + tail -1 +endef + +define $(PKG)_BUILD_$(BUILD) + mkdir '$(1).build' + cd '$(1).build' && '$(1)/configure' \ + --prefix='$(PREFIX)/$(TARGET)' + $(MAKE) -C '$(1).build' -j '$(JOBS)' + $(MAKE) -C '$(1).build' -j 1 install +endef diff --git a/plugins/native/sed.mk b/plugins/native/sed.mk new file mode 100644 index 0000000..bd0b76a --- /dev/null +++ b/plugins/native/sed.mk @@ -0,0 +1,32 @@ +# This file is part of MXE. +# See index.html for further information. + +PKG := sed +$(PKG)_IGNORE := +$(PKG)_VERSION := 4.2.2 +$(PKG)_CHECKSUM := f048d1838da284c8bc9753e4506b85a1e0cc1ea8999d36f6995bcb9460cddbd7 +$(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION) +$(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.bz2 +$(PKG)_URL := http://ftp.gnu.org/pub/gnu/$(PKG)/$($(PKG)_FILE) +$(PKG)_URL_2 := ftp://ftp.gnu.org/pub/gnu/$(PKG)/$($(PKG)_FILE) +$(PKG)_WEBSITE := https://www.gnu.org/software/sed +$(PKG)_MAKEFILE := $(realpath $(lastword $(MAKEFILE_LIST))) +$(PKG)_OWNER := https://github.com/tonytheodore +$(PKG)_TARGETS := $(BUILD) + +$(PKG)_DEPS_$(BUILD) := gettext libiconv + +define $(PKG)_UPDATE + $(WGET) -q -O- 'http://ftp.gnu.org/gnu/sed/?C=M;O=D' | \ + $(SED) -n 's,.*<a href="sed-\([0-9][^"]*\)\.tar.*,\1,p' | \ + $(SORT) -V | \ + tail -1 +endef + +define $(PKG)_BUILD_$(BUILD) + mkdir '$(1).build' + cd '$(1).build' && '$(1)/configure' \ + --prefix='$(PREFIX)/$(TARGET)' + $(MAKE) -C '$(1).build' -j '$(JOBS)' man1_MANS= + $(MAKE) -C '$(1).build' -j 1 install man1_MANS= +endef |