Aports tree: Difference between revisions

From Alpine Linux
(Cleaning)
m (minor layout changes)
Line 1: Line 1:
== Introduction ==
== Introduction ==
The [http://dev.alpinelinux.org/cgit/aports/ aports] tree is a [http://dev.alpinelinux.org/cgit/aports/tree/ directory tree] with many APKBUILD's.<BR>
The [http://dev.alpinelinux.org/cgit/aports/ aports] tree is a [http://dev.alpinelinux.org/cgit/aports/tree/ directory tree] with many APKBUILD's. ''[http://dev.alpinelinux.org/cgit/abuild/tree/sample.APKBUILD APKBUILD]'' is a file containing "recepies" on how something should be built/compiled. These files are used when building alpine from source. In your build environment you would have at least one ''[http://dev.alpinelinux.org/cgit/abuild/tree/sample.APKBUILD APKBUILD]'' for each package/program.
''[http://dev.alpinelinux.org/cgit/abuild/tree/sample.APKBUILD APKBUILD]'' is a file containing "recepies" on how something should be built/compiled.<BR>
These files are used when building alpine from source.<BR>
In your build environment you would have at least one ''[http://dev.alpinelinux.org/cgit/abuild/tree/sample.APKBUILD APKBUILD]'' for each package/program.


When alpine is compiled, you will no longer see (or have use of) the ''[http://dev.alpinelinux.org/cgit/abuild/tree/sample.APKBUILD APKBUILD]''. It is not included in the 'iso' or 'tar.gz'.
When alpine is compiled, you will no longer see (or have use of) the ''[http://dev.alpinelinux.org/cgit/abuild/tree/sample.APKBUILD APKBUILD]''. It is not included in the 'iso' or 'tar.gz'.
Line 12: Line 9:
While inside your [[Setting up the build environment 1.9|build environment]] you need to install some needed packages and you need to fetch the APKBUILD's from the server (fetch the aports tree).<BR>
While inside your [[Setting up the build environment 1.9|build environment]] you need to install some needed packages and you need to fetch the APKBUILD's from the server (fetch the aports tree).<BR>
'''''Note:''' You only need to do these 2 steps once! Next time you can skip this part.''
'''''Note:''' You only need to do these 2 steps once! Next time you can skip this part.''
apk add alpine-sdk
{{Cmd|apk add alpine-sdk}}
cd ~
{{Cmd|cd ~}}
git clone git://dev.alpinelinux.org/aports
{{Cmd|git clone git://dev.alpinelinux.org/aports}}
When the above is done you might be interested in fetching the latest updates.
When the above is done you might be interested in fetching the latest updates.
cd ~
{{Cmd|cd ~}}
git pull
{{Cmd|git pull}}


== Create a APKBUILD ==
== Create a APKBUILD ==
Your are encouraged to contribute with APKBUILD's the you have made.<BR>
Your are encouraged to contribute with APKBUILD's the you have made.<BR>
Please look at '[[Creating_an_Alpine_package|Creating_an_Alpine_package]]' that describes how you make your own APKBUILD's.
Please look at [[Creating_an_Alpine_package|Creating an Alpine package]] page that describes how you make your own APKBUILD's.

Revision as of 09:15, 15 June 2011

Introduction

The aports tree is a directory tree with many APKBUILD's. APKBUILD is a file containing "recepies" on how something should be built/compiled. These files are used when building alpine from source. In your build environment you would have at least one APKBUILD for each package/program.

When alpine is compiled, you will no longer see (or have use of) the APKBUILD. It is not included in the 'iso' or 'tar.gz'.

The abuild script reads the APKBUILD and executes the steps needed to create a package.

Fetch latest APKBUILD's

While inside your build environment you need to install some needed packages and you need to fetch the APKBUILD's from the server (fetch the aports tree).
Note: You only need to do these 2 steps once! Next time you can skip this part.

apk add alpine-sdk

cd ~

git clone git://dev.alpinelinux.org/aports

When the above is done you might be interested in fetching the latest updates.

cd ~

git pull

Create a APKBUILD

Your are encouraged to contribute with APKBUILD's the you have made.
Please look at Creating an Alpine package page that describes how you make your own APKBUILD's.