With just tkz-euclide (v3.01 here on CTAN
First method : we search the angle CBD todo this, we call Hb the projection of B on the line CD then it's easy to see that :
Ang(Hb,B,D)+Ang(D,B,A)+Ang(Hb,A,B) = 90 or Ang(Hb,B,D)=1/2 Ang(Hb,A,B).
We get 2.5x alpha = 90° so alpha=36°
\documentclass{standalone}
\usepackage{tkz-euclide}
\begin{document}
\begin{tikzpicture}
\tkzDefPoint(0,0){C}
\tkzDefPoint(2,6){B}
% possible \tkzDefPoint[label=below:$C$](0,0){C} but don't do this
% We get D and E with a rotation
\tkzDefPointBy[rotation= center B angle 36](C) \tkzGetPoint{D}
\tkzDefPointBy[rotation= center B angle 72](C) \tkzGetPoint{E}
% Toget A we use an intersection of lines
\tkzInterLL(B,E)(C,D) \tkzGetPoint{A}
\tkzInterLL(C,E)(B,D) \tkzGetPoint{H}
% drawing
\tkzDrawArc[delta=10](B,C)(E)
\tkzDrawPolygon(C,B,D)
\tkzDrawSegments(D,A B,A C,E)
% angles
\tkzMarkAngles(C,B,D E,A,D) %this is to draw the arcs
\tkzLabelAngles[pos=1.5](C,B,D E,A,D){$\alpha$}
\tkzMarkRightAngle(B,H,C)
\tkzDrawPoints(A,...,E)
% Label only now
\tkzLabelPoints[below left](C,A)
\tkzLabelPoints[below right](D)
\tkzLabelPoints[above](B,E)
\end{tikzpicture}
\end{document}

There is another possibility because the triangle CBD is a "Gold" triangle with angles 36°,72° and 72° and tkz-euclide knows how to define this kind of triangle.
\documentclass{standalone}
\usepackage{tkz-euclide}
\begin{document}
\begin{tikzpicture}
\tkzDefPoint(0,4){B}
\tkzDefPoint(8,0){A}
\tkzDefTriangle[gold](A,B) \tkzGetPoint{C}
\tkzDefTriangle[gold](B,C) \tkzGetPoint{D}
\tkzDuplicateSegment(B,C)(B,A)\tkzGetPoint{E}
\tkzInterLL(C,E)(B,D) \tkzGetPoint{F}
% drawing
\tkzDrawArc[delta=10](B,C)(E)
\tkzDrawPolygon(C,B,A)
\tkzDrawSegments(D,B C,E)
\tkzDrawPoints(A,...,F)
% % angles
\tkzFillAngles[fill=blue!10](C,B,D E,A,D)
\tkzMarkAngles(C,B,D E,A,D) %this is to draw the arcs
\tkzLabelAngles[pos=1.5](C,B,D E,A,D){$\alpha$}
\tkzMarkRightAngle[fill=blue!20](B,F,C)
% % Label only now
\tkzLabelPoints[below left](C,A)
\tkzLabelPoints[below right](D)
\tkzLabelPoints[above](B,E)
\end{tikzpicture}
\end{document}

pst-euclfor example: http://mirrors.rit.edu/CTAN/graphics/pstricks/contrib/pst-eucl/doc/pst-eucl-doc.pdf – Dec 12 '18 at 06:24tkz-euclideand in particular the calc library which I can recommend. – Dec 12 '18 at 07:55