D-paketoinnin ohjeet
ldc
Kaikki D-paketit ovat riippuvaisia ldc:stä kääntääkseen, joten jokaisen paketin BuildRequires-arvossa on oltava ldc. Lisäksi ldc-paketti sisältää joitakin hyödyllisiä makroita D-paketeille.
Compiler options
%{_d_optflags}-metodia on käytettävä ldc:n kanssa (normaali %{optflags} ei koske ldc:tä, vain gcc:tä).
%{_d_optflags} is defined as:
-release -w -g -O2
-release disables asserts, invariants, contracts and boundscheck + -w enables warnings + -g generates debug information + -O2 is the optimisation level
Some D packages use Makefiles, which usually use the $DFLAGS variable in the same way that C packages with Makefiles use $CFLAGS. In this case, export DFLAGS="%{_d_optflags}" is usually appropriate. In other cases, the build script in the D package has an option to pass in %{_d_optflags}. It is the responsibility of the packager to ensure that %{_d_optflags} are used with ldc when the package is built.
Libraries
At this time, Linux does not support shared libraries for D code (only OSX does). As a result, D packages are explicitly excluded from the restrictions against packaging static libraries.
To build static libraries in D, you use the same tools that you would for C, specifically, ar, ranlib, and strip.
If your D package contains static libraries, you must disable debuginfo generation, by adding this line to the top of your spec file:
%global debug_package %{nil}
Otherwise, it would generate an empty debuginfo package.
All static libraries must be placed in the *-devel subpackage. When doing this, you must also have Provides: %{name}-static = %{version}-%{release} in the devel package definition.
It is possible that this will leave the root package empty, if this is the case, do not list a %files section for the root package, only for the -devel package. This is illustrated in the example template below.
Mallipohja
%global debug_package %{nil}
Name: foo
Version: 1.2.3
Release: 1%{?dist}
Summary: Does foo in D
Group: Development/Libraries
License: LGPL-2.1-or-later
URL: https://anywhere.com/
Source: https://anywhere.com/%{name}-%{version}.tar.bz2
BuildRequires: ldc
Requires: tango
%description
Foo and bar.
%package devel
Provides: %{name}-static = %{version}-%{release}
Summary: Support for developing D application
Group: Development/Libraries
%prep
%setup -q
%build
export DFLAGS="%{_d_optflags}"
%configure
make %{?_smp_mflags}
%install
mkdir -p %{buildroot}%{_libdir}
mkdir -p %{buildroot}%{_d_includedir}/%{name}/
make install DESTDIR=%{buildroot}
install -m 0644 lib/* %{buildroot}%{_libdir}
install -m 0644 include/* %{buildroot}%{_d_includedir}/%{name}/
%clean
rm -rf %{buildroot}
%files devel
%doc README.txt
%license LICENSE.txt
%{_d_includedir}/%{name}/
%{_libdir}/*.a
%changelog
* Wed Aug 25 2010 John Doe <jdoe@anywhere.com> 1.2.3-1
- initial package
Want to help? Learn how to contribute to Fedora Docs ›