# HG changeset patch # User Richard Boulton # Date 1336620014 -3600 # Node ID dcc6afba15acebbdfdf77f97d7ba6b1185c6726c # Parent 518edbf5c71094f6c961d101b34de8f6d6670c3e new package: plibc diff -r 518edbf5c710 -r dcc6afba15ac index.html --- a/index.html Sun May 20 23:44:39 2012 +0200 +++ b/index.html Thu May 10 04:20:14 2012 +0100 @@ -1684,6 +1684,11 @@ PDcurses + plibc + 0.1.7 + Plibc + + pdflib_lite 7.0.5 PDFlib Lite diff -r 518edbf5c710 -r dcc6afba15ac src/plibc.mk --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/plibc.mk Thu May 10 04:20:14 2012 +0100 @@ -0,0 +1,21 @@ +# This file is part of MXE. +# See index.html for further information. + +PKG := plibc +$(PKG)_IGNORE := +$(PKG)_CHECKSUM := b545c602dc5b381fcea9d096910dede95168fbeb +$(PKG)_SUBDIR := PlibC-$($(PKG)_VERSION) +$(PKG)_FILE := plibc-$($(PKG)_VERSION)-src.tar.gz +$(PKG)_URL := http://sourceforge.net/projects/plibc/files/plibc/$($(PKG)_VERSION)/$($(PKG)_FILE)/download +$(PKG)_DEPS := gcc + +define $(PKG)_BUILD + cd '$(1)' && \ + chmod 0755 configure && \ + ./configure \ + --host='$(TARGET)' \ + --prefix='$(PREFIX)/$(TARGET)' \ + --enable-static \ + --disable-shared + $(MAKE) -C '$(1)' -j '$(JOBS)' install +endef