Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
aports
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
649
Issues
649
List
Boards
Labels
Service Desk
Milestones
Merge Requests
205
Merge Requests
205
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
alpine
aports
Commits
cc31e0e3
Commit
cc31e0e3
authored
Sep 16, 2016
by
Sören Tempel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
testing/pcc-libs: new aport
parent
34867060
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
64 additions
and
0 deletions
+64
-0
testing/pcc-libs/APKBUILD
testing/pcc-libs/APKBUILD
+49
-0
testing/pcc-libs/musl-fixes.patch
testing/pcc-libs/musl-fixes.patch
+15
-0
No files found.
testing/pcc-libs/APKBUILD
0 → 100644
View file @
cc31e0e3
# Contributor: Sören Tempel <soeren+alpine@soeren-tempel.net>
# Maintainer: Sören Tempel <soeren+alpine@soeren-tempel.net>
pkgname
=
pcc-libs
pkgver
=
1.1.0
pkgrel
=
0
pkgdesc
=
"The portable C compiler support libraries."
url
=
"http://pcc.ludd.ltu.se/"
arch
=
"x86 x86_64"
license
=
"BSD"
depends
=
""
depends_dev
=
""
makedepends
=
"
$depends_dev
"
install
=
""
subpackages
=
"
$pkgname
-dev"
source
=
"ftp://pcc.ludd.ltu.se/pub/pcc-releases/pcc-libs-
$pkgver
.tgz
musl-fixes.patch"
builddir
=
"
$srcdir
/"
$pkgname
-
$pkgver
prepare
()
{
default_prepare
||
return
1
cd
"
$builddir
"
update_config_sub
||
return
1
}
build
()
{
cd
"
$builddir
"
./configure
\
--build
=
$CBUILD
\
--host
=
$CHOST
\
--prefix
=
/usr
\
--sysconfdir
=
/etc
\
--mandir
=
/usr/share/man
\
--localstatedir
=
/var
\
||
return
1
make
-j1
||
return
1
}
package
()
{
cd
"
$builddir
"
make
DESTDIR
=
"
$pkgdir
"
install
||
return
1
}
md5sums
=
"360c157bbf6a7a931c4760ccf4ad704a pcc-libs-1.1.0.tgz
be1b3746acd6d91ba2f6e2827cbbfd35 musl-fixes.patch"
sha256sums
=
"dd4cb124da0b2edcda6ceb823c3ca8fc05919d35c89c34dec617517afe6bbfee pcc-libs-1.1.0.tgz
f17660c6dbd05bc9bce0b373072e60b51411934a717dfd031c55f4458801c48c musl-fixes.patch"
sha512sums
=
"89d90f246300ab1da652f652c685756aa038017f5b7d57d050bb5c88e01e70b594ffaef8772230fbeb9461e07c5b1df60e85e550ec4717008159218d50c8697a pcc-libs-1.1.0.tgz
fd8c71cd583c6be29553f2b7e6ce66073afd6d0406ae86f6fbb6a36efe8685be4732d2989180a9b31af734cc9a0973c1c731472f02bad076121f6c3c58391fc4 musl-fixes.patch"
testing/pcc-libs/musl-fixes.patch
0 → 100644
View file @
cc31e0e3
diff -upr pcc-libs-1.1.0.orig/csu/linux/Makefile pcc-libs-1.1.0/csu/linux/Makefile
--- pcc-libs-1.1.0.orig/csu/linux/Makefile 2016-09-16 19:44:48.113019651 +0200
+++ pcc-libs-1.1.0/csu/linux/Makefile 2016-09-16 19:45:09.666297594 +0200
@@ -6,9 +6,8 @@
SRCDIR ?= .
CFLAGS = -I$(SRCDIR)/$(MACH) -I$(SRCDIR) -Wall -Wstrict-prototypes -Wmissing-prototypes
-#OBJS = crt0.o crt1.o gcrt1.o crti.o crtn.o crtbegin.o crtend.o \
-# crtbeginS.o crtendS.o crtbeginT.o crtendT.o
-OBJS = crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o crtendT.o
+OBJS = crt0.o crt1.o gcrt1.o crti.o crtn.o crtbegin.o crtend.o \
+ crtbeginS.o crtendS.o crtbeginT.o crtendT.o
all: $(OBJS)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment