source: general/graphlib/sassc.xml@ 0a38b7c

11.0 11.1 11.2 11.3 12.0 12.1 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 0a38b7c was 0a38b7c, checked in by Bruce Dubbs <bdubbs@…>, 3 years ago

Package updates
Update to libndp-1.8
Update to libsass-3.6.5 and sassc-3.6.2

  • Property mode set to 100644
File size: 5.2 KB
RevLine 
[fef2695]1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY sassc-download-http
8 "https://github.com/sass/sassc/archive/&sassc-version;/sassc-&sassc-version;.tar.gz">
9 <!ENTITY sassc-download-ftp " ">
[0a38b7c]10 <!ENTITY sassc-md5sum "4c3b06ce2979f2a9f0a35093e501d8bb">
[fef2695]11 <!ENTITY sassc-size "28 KB">
[0a38b7c]12 <!ENTITY sassc-buildsize "5.1 MB">
13 <!ENTITY sassc-time "less than 0.1 SBU">
[fef2695]14
15 <!ENTITY libsass-download-http
16 "https://github.com/sass/libsass/archive/&libsass-version;/libsass-&libsass-version;.tar.gz">
17 <!ENTITY libsass-download-ftp " ">
[0a38b7c]18 <!ENTITY libsass-md5sum "c49765b9b3824dcd4a7423225ca28bad">
19 <!ENTITY libsass-size "336 KB">
20 <!ENTITY libsass-buildsize "139 MB">
21 <!ENTITY libsass-time "0.4 SBU (Using parallelism=4)">
[fef2695]22]>
23
[95965b6]24<sect1 id="sassc" xreflabel="sassc-&sassc-version;">
[fef2695]25 <?dbhtml filename="sassc.html"?>
26
27 <sect1info>
28 <date>$Date$</date>
29 </sect1info>
30
31 <title>sassc-&sassc-version;</title>
32
33 <indexterm zone="sassc">
34 <primary sortas="a-sassc">sassc</primary>
35 </indexterm>
36
37 <sect2 role="package">
38 <title>Introduction to sassc</title>
39
40 <para>
41 SassC is a wrapper around libsass, a CSS pre-processor language.
42 </para>
43
[3df8ea47]44 &lfs101_checked;
[fef2695]45
46 <bridgehead renderas="sect3">Package Information</bridgehead>
47 <itemizedlist spacing="compact">
48 <listitem>
49 <para>
50 Download (HTTP): <ulink url="&sassc-download-http;"/>
51 </para>
52 </listitem>
53 <listitem>
54 <para>
55 Download (FTP): <ulink url="&sassc-download-ftp;"/>
56 </para>
57 </listitem>
58 <listitem>
59 <para>
60 Download MD5 sum: &sassc-md5sum;
61 </para>
62 </listitem>
63 <listitem>
64 <para>
65 Download size: &sassc-size;
66 </para>
67 </listitem>
68 <listitem>
69 <para>
70 Estimated disk space required: &sassc-buildsize;
71 </para>
72 </listitem>
73 <listitem>
74 <para>
75 Estimated build time: &sassc-time;
76 </para>
77 </listitem>
78 </itemizedlist>
79
[aeea22a]80 <bridgehead renderas="sect3">Additional Downloads</bridgehead>
[fef2695]81 <itemizedlist spacing="compact">
82 <listitem>
83 <para>
84 Download (HTTP): <ulink url="&libsass-download-http;"/>
85 </para>
86 </listitem>
87 <listitem>
88 <para>
89 Download (FTP): <ulink url="&libsass-download-ftp;"/>
90 </para>
91 </listitem>
92 <listitem>
93 <para>
94 Download MD5 sum: &libsass-md5sum;
95 </para>
96 </listitem>
97 <listitem>
98 <para>
99 Download size: &libsass-size;
100 </para>
101 </listitem>
102 <listitem>
103 <para>
104 Estimated disk space required: &libsass-buildsize;
105 </para>
106 </listitem>
107 <listitem>
108 <para>
109 Estimated build time: &libsass-time;
110 </para>
111 </listitem>
112 </itemizedlist>
113
114 <para condition="html" role="usernotes">User Notes:
115 <ulink url="&blfs-wiki;/sassc"/>
116 </para>
117 </sect2>
118
119 <sect2 role="installation">
120 <title>Installation of sassc</title>
121
122 <para>
123 First, build the library:
124 </para>
125
[aeea22a]126<screen><userinput>tar -xf ../libsass-&libsass-version;.tar.gz &amp;&amp;
127pushd libsass-&libsass-version; &amp;&amp;
128
129autoreconf -fi &amp;&amp;
[fef2695]130
131./configure --prefix=/usr --disable-static &amp;&amp;
132make</userinput></screen>
133
134 <para>
[2325667b]135 This package does not come with a test suite.
[fef2695]136 </para>
137
138 <para>
139 Now, as the <systemitem class="username">root</systemitem> user:
140 </para>
141
142<screen role="root"><userinput>make install</userinput></screen>
143
144 <para>
145 Build the command line wrapper:
146 </para>
147
[aeea22a]148<screen><userinput>popd &amp;&amp;
[fef2695]149autoreconf -fi &amp;&amp;
150
151./configure --prefix=/usr &amp;&amp;
152make</userinput></screen>
153
154 <para>
[2325667b]155 This package does not come with a test suite.
[fef2695]156 </para>
157
158 <para>
159 Now, as the <systemitem class="username">root</systemitem> user:
160 </para>
161
162<screen role="root"><userinput>make install</userinput></screen>
163
164 </sect2>
165
166 <sect2 role="content">
167 <title>Contents</title>
168
169 <segmentedlist>
170 <segtitle>Installed Programs</segtitle>
171 <segtitle>Installed Libraries</segtitle>
172 <segtitle>Installed Directories</segtitle>
173
174 <seglistitem>
175 <seg>
176 sassc
177 </seg>
178 <seg>
[ab3656c]179 libsass.so
[fef2695]180 </seg>
181 <seg>
182 /usr/include/sass
183 </seg>
184 </seglistitem>
185 </segmentedlist>
186
187 <variablelist>
188 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
189 <?dbfo list-presentation="list"?>
190 <?dbhtml list-presentation="table"?>
191
192 <varlistentry id="sassc-prog">
193 <term><command>sassc</command></term>
194 <listitem>
195 <para>
[4c24eb0a]196 provides a command line interface to the libsass library
[fef2695]197 </para>
198 <indexterm zone="sassc sassc-prog">
199 <primary sortas="b-sassc">sassc</primary>
200 </indexterm>
201 </listitem>
202 </varlistentry>
203
204 </variablelist>
205
206 </sect2>
207
208</sect1>
Note: See TracBrowser for help on using the repository browser.