Comments - mariadb on Cubieboard (ARM AllWinner A10)

10 years, 8 months ago Daniel Bartholomew

I can't really address your first question, but I can help with creating .deb packages.

Here are the commands we use to create our Debian packages (starting with a download of the source tarball, I'm using 5.5.32 in my example).

mkdir -p debs/binary debs/source
mkdir build
cd build
tar zxf "../mariadb-5.5.32.tar.gz"
cd "mariadb-5.5.32"
AM_EXTRA_MAKEFLAGS=VERBOSE=1 debian/autobake-deb.sh
cp `find .. -maxdepth 1 -type f` ../../debs/binary/
cd ../../debs
dpkg-scanpackages binary /dev/null | gzip -9c > binary/Packages.gz
dpkg-scansources source /dev/null | gzip -9c > source/Sources.gz

You'll need the dpkg-dev package installed, possibly others.

Thanks.

 
Content reproduced on this site is the property of its respective owners, and this content is not reviewed in advance by MariaDB. The views, information and opinions expressed by this content do not necessarily represent those of MariaDB or any other party.